FaSeKYCAuthButton constructor

FaSeKYCAuthButton({
  1. Key? key,
  2. required ValueChanged<bool> onSuccess,
  3. required String clientId,
  4. required String clientSecret,
  5. required String redirectUri,
  6. required String customUriScheme,
  7. required ValueChanged<String> onUserCancel,
  8. required String personId,
  9. String? authUrl,
  10. List<String>? scopes,
  11. Widget? child,
  12. Color? backgroundColor,
})

Implementation

FaSeKYCAuthButton({
  Key? key,
  required this.onSuccess,
  required this.clientId,
  required this.clientSecret,
  required this.redirectUri,
  required this.customUriScheme,
  required this.onUserCancel,
  required this.personId,
  this.authUrl,
  this.scopes,
  this.child,
  this.backgroundColor,
}) : super(key: key);