getFullContacts method
Fetches all fields for all contacts
Implementation
static Future<List<Contact>> getFullContacts(
{bool withPhotos = false,
bool sorted = true,
bool useHighResolutionPhotos = false}) async =>
await _get(
withDetails: true,
withPhotos: withPhotos,
sorted: sorted,
useHighResolutionPhotos: useHighResolutionPhotos);