Item constructor
Item(- {required int? bankId,
- required int currencyId,
- String? accountNumber,
- String? holderName,
- String? ciNumber,
- String? ciComplement,
- String? email,
- String? cellphone,
- int? organizationId,
- DateTime? updatedAt,
- DateTime? createdAt,
- 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,
});