getAllContacts method

Future<List<Contact>> getAllContacts({
  1. bool withProperties = false,
  2. bool withThumbnail = false,
  3. bool withPhoto = false,
  4. bool sorted = true,
})

Gets all contacts from the device.

withProperties - Include phone numbers, emails, etc. withThumbnail - Include thumbnail images. withPhoto - Include full-size photos. sorted - Sort contacts alphabetically.

Implementation

Future<List<Contact>> getAllContacts({
  bool withProperties = false,
  bool withThumbnail = false,
  bool withPhoto = false,
  bool sorted = true,
}) {
  throw UnimplementedError('getAllContacts() has not been implemented.');
}