AddContact constructor

const AddContact({
  1. required Contact contact,
  2. required bool sharePhoneNumber,
})

Adds a user to the contact list or edits an existing contact by their user identifier

Implementation

const AddContact({
  required this.contact,
  required this.sharePhoneNumber,
});