hasWriteAccess method

Future<bool> hasWriteAccess(
  1. GroupScoped<DecryptedPatient> patient
)

Implementation

Future<bool> hasWriteAccess(GroupScoped<DecryptedPatient> patient) async {
	return await CardinalSdkPlatformInterface.instance.apis.patient.inGroup.hasWriteAccess(
		_sdkId,
		patient,
	);
}