MessageAddress constructor

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

Implementation

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