CellPositionResult constructor

const CellPositionResult({
  1. bool isOffscreenY = false,
  2. bool isOffscreenX = false,
  3. required Offset leftTop,
  4. required Size cellSize,
})

Implementation

const CellPositionResult({
  this.isOffscreenY = false,
  this.isOffscreenX = false,
  required this.leftTop,
  required this.cellSize,
});