currentRowIndex property

int? get currentRowIndex

Implementation

int? get currentRowIndex => widget.model.stateManager?.currentRow != null
    ? rows.indexOf(widget.model.stateManager!.currentRow!)
    : null;