isCurrentCell method

  1. @override
bool isCurrentCell(
  1. PlutoCell? cell
)
inherited

Whether the cell is the currently selected cell.

Implementation

@override
bool isCurrentCell(PlutoCell? cell) {
  return currentCell != null && currentCell!.key == cell!.key;
}