AccountSepaDebitPaymentsSettings.fromJson constructor

AccountSepaDebitPaymentsSettings.fromJson(
  1. Object? json
)

Implementation

factory AccountSepaDebitPaymentsSettings.fromJson(Object? json) {
  final map = (json as Map).cast<String, Object?>();
  return AccountSepaDebitPaymentsSettings(
      creditorId:
          map['creditor_id'] == null ? null : (map['creditor_id'] as String));
}