KwikForms constructor

const KwikForms({
  1. Key? key,
  2. required List<KwikAddress> addresses,
  3. required bool consent,
  4. int? consentTimestamp,
  5. ValueChanged<KwikAddress>? onFormSubmit,
  6. ValueChanged? onSubmissionFailed,
  7. VoidCallback? onClose,
  8. KwikLoginConfig? loginConfig,
  9. KwikFormsStyle? style,
})

Implementation

const KwikForms({
  super.key,
  required this.addresses,
  required this.consent,
  this.consentTimestamp,
  this.onFormSubmit,
  this.onSubmissionFailed,
  this.onClose,
  this.loginConfig,
  this.style,
});