fromJson static method
Inherited by: InputCredentialsApplePay InputCredentialsGooglePay InputCredentialsNew InputCredentialsSaved
Implementation
static InputCredentialsApplePay? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return InputCredentialsApplePay(data: (json['data'] as String?) ?? '');
}