SepaDebit constructor

  1. @JsonSerializable(explicitToJson: true)
const SepaDebit({
  1. String? country,
  2. String? bankCode,
  3. String? fingerprint,
  4. String? last4,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory SepaDebit({
  /// Two letter ISO code representing the country of the bank account.
  String? country,

  /// Bank code associated with the bankaccount.
  String? bankCode,

  /// Unique ID for the bank account.
  String? fingerprint,

  /// Last four characters of IBAN.
  String? last4,
}) = _SepaDebit;