removeAt method
Refer to List.removeAt.
Additionally returns the list.
Implementation
Future<List<E>> removeAt(int index) async => (await this)..removeAt(index);
Refer to List.removeAt.
Additionally returns the list.
Future<List<E>> removeAt(int index) async => (await this)..removeAt(index);