copyWith method

  1. @override
PageMetrics copyWith(
  1. {double? minScrollExtent,
  2. double? maxScrollExtent,
  3. double? pixels,
  4. double? viewportDimension,
  5. AxisDirection? axisDirection,
  6. double? viewportFraction,
  7. double? devicePixelRatio}
)
override

Creates a ScrollMetrics that has the same properties as this object.

This is useful if this object is mutable, but you want to get a snapshot of the current state.

The named arguments allow the values to be adjusted in the process. This is useful to examine hypothetical situations, for example "would applying this delta unmodified take the position outOfRange?".

Implementation

@override
PageMetrics copyWith({
  double? minScrollExtent,
  double? maxScrollExtent,
  double? pixels,
  double? viewportDimension,
  AxisDirection? axisDirection,
  double? viewportFraction,
  double? devicePixelRatio,
}) {
  return PageMetrics(
    minScrollExtent: minScrollExtent ?? this.minScrollExtent,
    maxScrollExtent: maxScrollExtent ?? this.maxScrollExtent,
    pixels: pixels ?? this.pixels,
    viewportDimension: viewportDimension ?? this.viewportDimension,
    axisDirection: axisDirection ?? this.axisDirection,
    viewportFraction: viewportFraction ?? this.viewportFraction,
    devicePixelRatio: devicePixelRatio ?? this.devicePixelRatio,
  );
}