removeAt method

Future<List<E>> removeAt(
  1. int index
)

Refer to List.removeAt.

Additionally returns the list.

Implementation

Future<List<E>> removeAt(int index) async => (await this)..removeAt(index);