matchContactsBy method

Future<List<String>> matchContactsBy(
  1. FilterOptions<Contact> filter
)

Implementation

Future<List<String>> matchContactsBy(FilterOptions<Contact> filter) async {
	return await CardinalSdkPlatformInterface.instance.apis.contact.matchContactsBy(
		_sdkId,
		filter,
	);
}