ShareAllPatientDataOptionsEntityResult constructor

ShareAllPatientDataOptionsEntityResult(
  1. int modified, {
  2. bool? success,
  3. ShareAllPatientDataOptionsSharePatientDataError? error,
})

Implementation

ShareAllPatientDataOptionsEntityResult(
	int modified,
	{
		bool? success,
		ShareAllPatientDataOptionsSharePatientDataError? error
	}) : success = success ?? null,
	error = error ?? null,
	_modified = modified;