contact_add 0.0.1
contact_add: ^0.0.1 copied to clipboard
Add contacts to the OS without additional permissions!
contact_add #
Add contacts to the OS without additional permissions!
Usage #
To use this plugin, add contact_add
as a dependency in your pubspec.yaml file:
flutter pub add contact_add
Example #
final Contact contact = Contact(
firstname: "John",
lastname: "Doe",
company: "ContactAdd",
phone: "+41 01 234 56 78",
email: "hello@example.com"
);
final bool success = await ContactAdd.addContact(contact);
Supported platforms #
This library currently supports iOS, macOS and Android.