decode static method
Implementation
static FlutterAuthenticationResponse decode(Object result) {
result as List<Object?>;
return FlutterAuthenticationResponse(
success: result[0]! as bool,
signature: result[1]! as String,
timestamp: result[2]! as String,
partnerParams: result[3]! as FlutterPartnerParams,
callbackUrl: result[4] as String?,
consentInfo: result[5] as FlutterConsentInfo?,
);
}