BacsDebit constructor

  1. @JsonSerializable(explicitToJson: true)
const BacsDebit({
  1. String? sortCode,
  2. String? fingerprint,
  3. String? last4,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory BacsDebit({
  /// Sort code of the bankaccount.
  String? sortCode,

  /// Unique identifier for the bankaccount.

  String? fingerprint,

  /// Last 4 digits of the bank account.
  String? last4,
}) = _BacsDebit;