Customer constructor

Customer({
  1. required String email,
  2. String? name,
  3. String? phoneNumber,
})

Implementation

Customer({required this.email, this.name, this.phoneNumber});