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