UAdminGroup constructor

UAdminGroup({
  1. required String title,
  2. required IconData icon,
  3. List<UAdminModule> modules = const <UAdminModule>[],
  4. List<UAdminGroup> groups = const <UAdminGroup>[],
  5. String? id,
  6. String? header,
  7. List<TagUser>? roles,
  8. bool expanded = false,
})

Implementation

UAdminGroup({
  required this.title,
  required this.icon,
  this.modules = const <UAdminModule>[],
  this.groups = const <UAdminGroup>[],
  this.id,
  this.header,
  this.roles,
  this.expanded = false,
});