Profile constructor

Profile(
  1. List<FormInfo> forms,
  2. List<ActionInfo> actions,
  3. List<CubeInfo> cubes,
  4. List<FolderInfo> folders,
  5. List<WidgetInfo> widgets,
  6. List<NotificationBase> notifications,
  7. int notificationsCount,
  8. int conversationsCount,
  9. int inboxCount,
  10. List<ContactInfo> contacts,
  11. String userId,
  12. String? byId,
  13. String name,
  14. String? byName,
  15. List<StateInfo> states,
  16. List<ControlInfo> controls,
  17. LicenseInfo license,
)

Implementation

Profile(
  this.forms,
  this.actions,
  this.cubes,
  this.folders,
  this.widgets,
  this.notifications,
  this.notificationsCount,
  this.conversationsCount,
  this.inboxCount,
  this.contacts,
  this.userId,
  this.byId,
  this.name,
  this.byName,
  this.states,
  this.controls,
  this.license,
);