AccountCardIssuing.fromJson constructor

AccountCardIssuing.fromJson(
  1. 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']));
}