AubecsFormInputDetails constructor

  1. @JsonSerializable(explicitToJson: true)
const AubecsFormInputDetails({
  1. String? bsbNumber,
  2. String? name,
  3. String? accountNumber,
  4. String? email,
})

Implementation

@JsonSerializable(explicitToJson: true)
const factory AubecsFormInputDetails({
  /// Six digit identifier to identify the branch of an financial institution.
  String? bsbNumber,

  /// The name of the accountholder.
  String? name,

  /// The account number.
  String? accountNumber,

  /// Email of the accountholder.
  String? email,
}) = _AubecsFormInputDetails;