copyWith method

CellRef copyWith({
  1. int? row,
  2. int? col,
})

Implementation

CellRef copyWith({int? row, int? col}) => CellRef(row ?? this.row, col ?? this.col);