getFullContacts method

Future<List<Contact>> getFullContacts (
  1. {bool withPhotos: false,
  2. bool sorted: true,
  3. bool useHighResolutionPhotos: false,
  4. bool deduplicateEmailsAndPhones: true}
)

Fetches all fields for all contacts

Implementation

static Future<List<Contact>> getFullContacts({
  bool withPhotos = false,
  bool sorted = true,
  bool useHighResolutionPhotos = false,
  bool deduplicateEmailsAndPhones = true,
}) async =>
    await _get(
        withDetails: true,
        withPhotos: withPhotos,
        sorted: sorted,
        useHighResolutionPhotos: useHighResolutionPhotos,
        deduplicateEmailsAndPhones: deduplicateEmailsAndPhones);