removeAt method

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

Async removes the element at index.

Implementation

@override
Future<void> removeAt(int index) async {
  return Future<void>(() => _collective.removeAt(index));
}