Customer constructor

Customer({
  1. int? id,
  2. required String name,
  3. required String phoneNumber,
  4. required String customerType,
  5. required int creditPoints,
})

Implementation

Customer({
  this.id,
  required this.name,
  required this.phoneNumber,
  required this.customerType,
  required this.creditPoints,
});