ContactPersonModel constructor

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

Returns a new ContactPersonModel instance.

Implementation

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