MobileView constructor
MobileView({})
Implementation
MobileView({
Key? key,
required this.slivers,
required this.detailBuilder,
required List<Widget> children,
required this.detailScaffoldKey,
required this.useRootNavigator,
required this.navigator,
required this.nullItems,
required this.emptyItems,
}) : childDelagate = SliverChildListDelegate(
children,
addAutomaticKeepAlives: false,
addRepaintBoundaries: false,
addSemanticIndexes: false,
),
super(key: key);