delta_contacts 1.1.0
delta_contacts: ^1.1.0 copied to clipboard
A Flutter plugin for accessing device contacts.
delta_contacts #
- This plugin is used to get contacts from the device. Compatible with Android and iOS.
Getting Started #
import 'package:delta_contacts/delta_contacts.dart';
final deltaContacts = DeltaContacts();
final contacts = await deltaContacts.getContacts();
print(contacts);
Use history token to get the changes in contacts from the last time you synced. History token is timestamp in [millisecondsSinceEpoch] in Android and Contact Store History Token in iOS.
final contacts = await deltaContacts.getContacts(historyToken: historyToken);