toBitList method

BitList toBitList({
  1. bool growable = false,
})

Converts this Iterable to a space-efficient BitList.

Implementation

BitList toBitList({bool growable = false}) =>
    BitList.of(this, growable: growable);