AccountData constructor
AccountData({})
Creates a new instance of AccountData.
firstName: The first name of the account holder.lastName: The last name of the account holder.routingNumber: The bank's routing number.last4: The last four digits of the bank account number.
Implementation
AccountData({
required this.firstName,
required this.lastName,
required this.routingNumber,
required this.last4,
});