PlexRoute constructor

PlexRoute({
  1. required String route,
  2. required String title,
  3. required Widget screen(
    1. BuildContext context, {
    2. dynamic data,
    }),
  4. String category = "Menu",
  5. String? rule,
  6. String? shortTitle,
  7. String? tag,
  8. String? tagDescription,
  9. Color? tagBgColor,
  10. Color? tagTextColor,
})

Default constructor

Implementation

PlexRoute({
  required this.route,
  required this.title,
  required this.screen,
  this.logo,
  this.selectedLogo,
  this.category = "Menu",
  this.rule,
  this.shortTitle,
  this.tag,
  this.tagDescription,
  this.tagBgColor,
  this.tagTextColor,
});