LxList<E> constructor
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);