Customer constructor

const Customer({
  1. required String name,
  2. required String address,
  3. String? phone,
  4. String? email,
})

Implementation

const Customer({
  required this.name,
  required this.address,
  this.phone,
  this.email,
});