Datum constructor
Datum(- {required int id,
- int? bankId,
- int? organizationId,
- required int currencyId,
- required String accountNumber,
- required String holderName,
- required String ciNumber,
- String? ciComplement,
- required String email,
- required String cellphone,
- int? active,
- DateTime? createdAt,
- DateTime? updatedAt,
- required Bank bank,
- Organization? organization,
- required Currency currency}
)
Implementation
Datum({
required this.id,
this.bankId,
this.organizationId,
required this.currencyId,
required this.accountNumber,
required this.holderName,
required this.ciNumber,
this.ciComplement,
required this.email,
required this.cellphone,
this.active,
this.createdAt,
this.updatedAt,
required this.bank,
this.organization,
required this.currency,
});