ReactiveSet<T> constructor

ReactiveSet<T>(
  1. Set<T> value
)

Creates a new instance of ReactiveList with the initial value.

The initial value is set for the reactive list variable.

Implementation

ReactiveSet(Set<T> value) : super(value);