remove method

Future<List<E>> remove(
  1. Object o
)

Refer to List.remove.

Additionally returns the list.

Implementation

Future<List<E>> remove(Object o) async => (await this)..remove(o);