Ideal constructor

  1. @JsonSerializable(explicitToJson: true)
const Ideal({
  1. String? bankIdentifierCode,
  2. String? bank,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory Ideal({
  /// The BIC code of the bank
  String? bankIdentifierCode,

  /// The bank of the customer
  String? bank,
}) = _Ideal;