UserGroup constructor
UserGroup({})
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;