pickFullContacts method

Future<List<FullContact>> pickFullContacts({
  1. bool askForPermission = true,
  2. bool multiple = true,
})

Sister method to pickFullContact to select multiple contact This will throw an UnsupportedError on all platform except web See Also pickFullContact

Implementation

Future<List<FullContact>> pickFullContacts(
    {

    /// This doesn't do anything as web does not have permissions for now
    bool askForPermission = true,

    /// Whether to request multiple contacts or not
    bool multiple = true}) {
  return ContactPickerPlatform.instance.pickFullContacts(
      askForPermission: askForPermission, multiple: multiple);
}