createMedicalLocation method

Future<MedicalLocation> createMedicalLocation(
  1. MedicalLocation medicalLocationDto
)

Implementation

Future<MedicalLocation> createMedicalLocation(MedicalLocation medicalLocationDto) async {
	return await CardinalSdkPlatformInterface.instance.apis.medicalLocation.createMedicalLocation(
		_sdkId,
		medicalLocationDto,
	);
}