currentRow property

  1. @override
PlutoRow? currentRow
inherited

Row of currently selected cell.

Implementation

@override
PlutoRow? get currentRow {
  if (currentRowIdx == null) {
    return null;
  }

  return refRows[currentRowIdx!];
}