ShopifyEmailForm constructor

const ShopifyEmailForm({
  1. Key? key,
  2. List<MultipleEmail> multipleEmail = const [],
  3. required ValueChanged<String> onSubmitEmail,
  4. bool isLoading = false,
  5. bool isSuccess = false,
  6. ShopifyEmailScreenConfig? config,
  7. LoadingConfig? loaderConfig,
  8. ValueChanged<String>? onChanged,
  9. String? initialValue,
})

Implementation

const ShopifyEmailForm({
  super.key,
  this.multipleEmail = const [],
  required this.onSubmitEmail,
  this.isLoading = false,
  this.isSuccess = false,
  this.config,
  this.loaderConfig,
  this.onChanged,
  this.initialValue,
});