ObservableSet<T>.splayTreeSetFrom constructor
ObservableSet<T>.splayTreeSetFrom (
- Iterable<
T> other, { - int compare(
- T,
- T
- bool isValidKey(
- dynamic
- ReactiveContext? context,
- String? name,
Implementation
ObservableSet.splayTreeSetFrom(
Iterable<T> other, {
int Function(T, T)? compare,
// ignore:avoid_annotating_with_dynamic
bool Function(dynamic)? isValidKey,
ReactiveContext? context,
String? name,
}) : this._(
context ?? mainContext,
SplayTreeSet.of(other, compare, isValidKey),
name,
);