AccountCardIssuing.fromJson constructor
AccountCardIssuing.fromJson(
- Object? json
Implementation
factory AccountCardIssuing.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return AccountCardIssuing(
tosAcceptance: map['tos_acceptance'] == null
? null
: AccountTosAcceptance.fromJson(map['tos_acceptance']));
}