AccountAcssDebitPayments.fromJson constructor

AccountAcssDebitPayments.fromJson(
  1. 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));
}