createPatients method

Future<List<GroupScoped<Patient>>> createPatients(
  1. List<GroupScoped<Patient>> patients
)

Implementation

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