LoginModel constructor

LoginModel({
  1. int? userId,
  2. String? displayName,
  3. String? sessionToken,
  4. List<Map<String, dynamic>>? lstRolesWithDepartment,
  5. List<Map<String, dynamic>>? userDepartments,
  6. List<Map<String, dynamic>>? userRoles,
  7. List<OrganizationHierarchyData>? positions,
})

Implementation

LoginModel({
  this.userId,
  this.displayName,
  this.sessionToken,
  this.lstRolesWithDepartment,
  this.userDepartments,
  this.userRoles,
  this.positions
});