insert method

void insert(
  1. int index,
  2. T element, {
  3. bool notify = true,
})

Implementation

void insert(int index, T element, {bool notify = true}) {
  value.insert(index, element);
  if (notify) notifyListeners();
}