ShellCoveringRoute constructor

ShellCoveringRoute({
  1. required RouteKey shellKey,
  2. required List<HyperRoute<RouteValue>> children,
})

Implementation

ShellCoveringRoute({
  required this.shellKey,
  required super.children,
}) : assert(children.isNotEmpty,
          "[ShellCoveringRoute] serves as a proxy for its children and can't be displayed on its own. Provide at least one child");