createPatient method

Future<GroupScoped<Patient>> createPatient(
  1. GroupScoped<Patient> patient
)

Implementation

Future<GroupScoped<Patient>> createPatient(GroupScoped<Patient> patient) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.inGroup.tryAndRecover.createPatient(
		_sdkId,
		patient,
	);
}