FlutterAuthenticationResponse constructor

FlutterAuthenticationResponse({
  1. required bool success,
  2. required String signature,
  3. required String timestamp,
  4. required FlutterPartnerParams partnerParams,
  5. String? callbackUrl,
  6. FlutterConsentInfo? consentInfo,
})

Implementation

FlutterAuthenticationResponse({
  required this.success,
  required this.signature,
  required this.timestamp,
  required this.partnerParams,
  this.callbackUrl,
  this.consentInfo,
});