AubecsFormInputDetails constructor
- @JsonSerializable(explicitToJson: true)
const
AubecsFormInputDetails(
{ - String? bsbNumber,
- String? name,
- String? accountNumber,
- 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;