matchContactsBy method

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

Implementation

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