TableVicinity constructor

const TableVicinity({
  1. required int row,
  2. required int column,
})

Creates a reference to a child in a TableView, with the xIndex and yIndex converted to terms of row and column.

Implementation

const TableVicinity({
  required int row,
  required int column,
}) : super(xIndex: column, yIndex: row);