LxList<E> constructor

LxList<E>([
  1. List<E>? initial,
  2. String? name,
  3. bool isSensitive = false
])

Creates a reactive list.

Backed by initial if provided, otherwise an empty list.

Implementation

LxList([List<E>? initial, String? name, bool isSensitive = false])
    : super(initial ?? <E>[], name: name, isSensitive: isSensitive);