BitList.empty constructor

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

Constructs an empty bit list.

Implementation

factory BitList.empty({bool growable = false}) =>
    BitList.filled(0, false, growable: growable);