BitList.from constructor

BitList.from(
  1. Iterable<bool> other, {
  2. bool growable = false,
})

Constructs a new list from a given Iterable of booleans.

Implementation

factory BitList.from(Iterable<bool> other, {bool growable = false}) =>
    BitList.of(other, growable: growable);