deleteContacts method

Future<List<DocIdentifier>> deleteContacts(
  1. List<Contact> contacts
)

Implementation

Future<List<DocIdentifier>> deleteContacts(List<Contact> contacts) async {
	return await CardinalSdkPlatformInterface.instance.apis.contactBasic.deleteContacts(
		_sdkId,
		contacts,
	);
}