AddContact constructor

AddContact({
  1. String? extra,
  2. int? client_id,
  3. Contact? contact,
  4. Bool? share_phone_number,
})

Implementation

AddContact({
  super.extra,
  super.client_id,
  this.contact,
  this.share_phone_number,
});