ScreenWrap constructor

const ScreenWrap({
  1. required WidgetBuilder child,
  2. String? title,
  3. bool showBack = false,
  4. bool requiresAuthentication = false,
  5. List<String> requiredRoles = const [],
  6. FloatingActionButton? floatingActionButton,
  7. MenuType menuType = MenuType.navigationRail,
  8. Key? key,
})

Implementation

const ScreenWrap(
    {required this.child,
    this.title,
    this.showBack = false,
    this.requiresAuthentication = false,
    this.requiredRoles = const [],
    this.floatingActionButton,
    this.menuType = MenuType.navigationRail,
    super.key});