Customer constructor

Customer(
  1. String id,
  2. String name,
  3. String email,
  4. String password,
  5. String salt,
  6. String phone,
  7. String school,
  8. String foodCourt,
)

Implementation

Customer(this.id, this.name, this.email, this.password, this.salt, this.phone,
    this.school, this.foodCourt);