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