remove method

void remove(
  1. int index
)

Remote recent call item by its index in the list

Implementation

void remove(int index) {
  if ((index >= 0) && (index < length)) {
    _cdrItems.removeAt(index);
    notifyListeners();
  }
}