UserGroup constructor

UserGroup({
  1. String? groupId,
  2. String? groupName,
  3. List<Group>? groupsHierarchy,
  4. String? userId,
  5. String? login,
  6. String? name,
  7. String? email,
  8. String? phone,
  9. String? patientId,
  10. String? healthcarePartyId,
  11. String? deviceId,
  12. String? nameOfParentOfTopmostGroupInHierarchy,
})

Implementation

UserGroup({
		String? groupId,
		String? groupName,
		List<Group>? groupsHierarchy,
		String? userId,
		String? login,
		String? name,
		String? email,
		String? phone,
		String? patientId,
		String? healthcarePartyId,
		String? deviceId,
		String? nameOfParentOfTopmostGroupInHierarchy
	}) : groupId = groupId ?? null,
	groupName = groupName ?? null,
	groupsHierarchy = groupsHierarchy ?? [],
	userId = userId ?? null,
	login = login ?? null,
	name = name ?? null,
	email = email ?? null,
	phone = phone ?? null,
	patientId = patientId ?? null,
	healthcarePartyId = healthcarePartyId ?? null,
	deviceId = deviceId ?? null,
	nameOfParentOfTopmostGroupInHierarchy = nameOfParentOfTopmostGroupInHierarchy ?? null;