bodySlot method

dynamic bodySlot()

Implementation

SlotLayout bodySlot() {
  return SlotLayout(
    config: <Breakpoint, SlotLayoutConfig>{
      Breakpoints.standard: SlotLayout.from(
        key: const Key('Body Small'),
        builder: (BuildContext context) => widget.navigationShell,
      ),
    },
  );
}