add method

Future<List<E>> add(
  1. E e
)

Refer to List.add.

Additionally returns the list.

Implementation

Future<List<E>> add(E e) async => (await this)..add(e);