CellTextEntry constructor

const CellTextEntry({
  1. required int row,
  2. required int col,
  3. required String text,
})

Implementation

const CellTextEntry({
  required this.row,
  required this.col,
  required this.text,
});