Item constructor

Item(
  1. {required int? bankId,
  2. required int currencyId,
  3. String? accountNumber,
  4. String? holderName,
  5. String? ciNumber,
  6. String? ciComplement,
  7. String? email,
  8. String? cellphone,
  9. int? organizationId,
  10. DateTime? updatedAt,
  11. DateTime? createdAt,
  12. required int id}
)

Implementation

Item({
  required this.bankId,
  required this.currencyId,
  this.accountNumber,
  this.holderName,
  this.ciNumber,
  this.ciComplement,
  this.email,
  this.cellphone,
  this.organizationId,
  this.updatedAt,
  this.createdAt,
  required this.id,
});