UnboundedViewport constructor

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

Implementation

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