currentRowIndex property

int? get currentRowIndex

Implementation

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