list<E> static method

  1. @factory
GetList<E> list<E>([
  1. Iterable<E> list = const []
])

Encapsulates a ListNotifier, and can be used as a List directly.

Implementation

@factory
static GetList<E> list<E>([Iterable<E> list = const []]) => GetList._(_ListNotifier(list));