removeCurrentRow method

  1. @override
void removeCurrentRow()
inherited

Implementation

@override
void removeCurrentRow() {
  if (currentRowIdx == null) {
    return;
  }

  if (enabledRowGroups) {
    removeRowAndGroupByKey([currentRow!.key]);
  } else {
    refRows.removeAt(currentRowIdx!);
  }

  resetCurrentState(notify: false);

  notifyListeners(true, removeCurrentRow.hashCode);
}