matchPatientsBy method

Future<List<String>> matchPatientsBy(
  1. BaseFilterOptions<Patient> filter
)

Implementation

Future<List<String>> matchPatientsBy(BaseFilterOptions<Patient> filter) async {
	return await CardinalSdkPlatformInterface.instance.apis.patientBasic.matchPatientsBy(
		_sdkId,
		filter,
	);
}