getContacts method

Future<List<DecryptedContact>> getContacts(
  1. List<String> entityIds
)

Implementation

Future<List<DecryptedContact>> getContacts(List<String> entityIds) async {
	return await CardinalSdkPlatformInterface.instance.apis.contact.getContacts(
		_sdkId,
		entityIds,
	);
}