ExpandedViewport constructor

ExpandedViewport({
  1. Key? key,
  2. AxisDirection? axisDirection = AxisDirection.down,
  3. AxisDirection? crossAxisDirection,
  4. double? anchor = 0.0,
  5. ViewportOffset? offset,
  6. Key? center,
  7. double? cacheExtent = 1,
  8. List<Widget>? slivers = const <Widget>[],
})

Implementation

ExpandedViewport({
  super.key,
  AxisDirection? axisDirection = AxisDirection.down,
  super.crossAxisDirection,
  double? anchor = 0.0,
  ViewportOffset? offset,
  super.center,
  super.cacheExtent = 1,
  List<Widget>? slivers = const <Widget>[],
}) : super(
          slivers: slivers!,
          axisDirection: axisDirection!,
          anchor: anchor!,
          offset: offset!);