TwoDimensionalChildListDelegate constructor

TwoDimensionalChildListDelegate(
  1. {bool addRepaintBoundaries = true,
  2. bool addAutomaticKeepAlives = true,
  3. required List<List<Widget>> children}
)

Creates a delegate that supplies children for a TwoDimensionalScrollView.

The children and addRepaintBoundaries must not be null.

Implementation

TwoDimensionalChildListDelegate({
  this.addRepaintBoundaries = true,
  this.addAutomaticKeepAlives = true,
  required this.children,
});