IssuingCardholderIndividualDob.fromJson constructor
IssuingCardholderIndividualDob.fromJson(
- Object? json
Implementation
factory IssuingCardholderIndividualDob.fromJson(Object? json) {
final map = (json as Map).cast<String, Object?>();
return IssuingCardholderIndividualDob(
day: map['day'] == null ? null : (map['day'] as num).toInt(),
month: map['month'] == null ? null : (map['month'] as num).toInt(),
year: map['year'] == null ? null : (map['year'] as num).toInt(),
);
}