isActiveCellId method

bool isActiveCellId(
  1. String cellId
)

Returns true if cellId is the active (last) cell in the focused path.

Implementation

bool isActiveCellId(String cellId) =>
    focusedCells.isNotEmpty && focusedCells.last == cellId;