Customer constructor

Customer(
  1. String fullName,
  2. String email,
  3. String phone
)

Implementation

Customer(this.fullName, this.email, this.phone);