removeAt method

  1. @override
Future<void> removeAt(
  1. int index
)
override

Removes the item at index.

Implementation

@override

/// Removes the item at [index].
Future<void> removeAt(int index) {
  _q.removeAt(index);
  return Future.value();
}