ListObs<E> constructor

ListObs<E>(
  1. List<E> value, {
  2. bool autoNotify = true,
  3. ValueChanged<List<E>>? onChanged,
  4. bool? immediate,
  5. String? cacheKey,
  6. ElSerialize? serialize,
  7. ElStorage? storage,
})

Implementation

ListObs(
  super.value, {
  super.autoNotify,
  super.onChanged,
  super.immediate,
  super.cacheKey,
  super.serialize,
  super.storage,
});