SepaDebit constructor
- @JsonSerializable(explicitToJson: true)
const
SepaDebit(
{ - String? country,
- String? bankCode,
- String? fingerprint,
- 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;