ReactiveList<T> constructor

ReactiveList<T>(
  1. List<T> value
)

Creates a new instance of ReactiveList with the initial value.

The initial value is set for the reactive list variable.

Implementation

ReactiveList(List<T> value) : super(value);