BankStatement constructor

BankStatement({
  1. required int id,
  2. required String organizationId,
  3. required String description,
  4. required double value,
  5. String? tag,
  6. required int employeeId,
  7. int? customerId,
  8. required DateTime date,
})

Returns a new BankStatement instance.

Implementation

BankStatement({
  required this.id,
  required this.organizationId,
  required this.description,
  required this.value,
  this.tag,
  required this.employeeId,
  this.customerId,
  required this.date,
});