SignalList<E>.of constructor

SignalList<E>.of(
  1. Iterable<E> elements, {
  2. bool growable = true,
})

see dart:core documentation

Implementation

factory SignalList.of(Iterable<E> elements, {bool growable = true}) =>
    SignalList(List.of(elements, growable: growable));