SpanExtentDelegate constructor

const SpanExtentDelegate({
  1. required double viewportExtent,
  2. required double precedingExtent,
})

Creates a SpanExtentDelegate.

Usually, only TableViews need to create instances of this class.

Implementation

const SpanExtentDelegate({
  required this.viewportExtent,
  required this.precedingExtent,
});