removeAllRows method

  1. @override
void removeAllRows({
  1. bool notify = true,
})
inherited

Implementation

@override
void removeAllRows({bool notify = true}) {
  if (refRows.originalList.isEmpty) {
    return;
  }

  refRows.clearFromOriginal();

  resetCurrentState(notify: false);

  notifyListeners(notify, removeAllRows.hashCode);
}