Client constructor

Client({
  1. String? phone,
  2. String? name,
  3. String? email,
})

Implementation

Client({
  this.phone,
  this.name,
  this.email,
});