Datum constructor

Datum(
  1. {required int id,
  2. int? bankId,
  3. int? organizationId,
  4. required int currencyId,
  5. required String accountNumber,
  6. required String holderName,
  7. required String ciNumber,
  8. String? ciComplement,
  9. required String email,
  10. required String cellphone,
  11. int? active,
  12. DateTime? createdAt,
  13. DateTime? updatedAt,
  14. required Bank bank,
  15. Organization? organization,
  16. 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,
});