getServiceCodesOccurrences method

Future<List<LabelledOccurence>> getServiceCodesOccurrences(
  1. String codeType,
  2. int minOccurrences
)

Implementation

Future<List<LabelledOccurence>> getServiceCodesOccurrences(String codeType, int minOccurrences) async {
	return await CardinalSdkPlatformInterface.instance.apis.contactBasic.getServiceCodesOccurrences(
		_sdkId,
		codeType,
		minOccurrences,
	);
}