BitBuffer.fromUInt8List constructor

BitBuffer.fromUInt8List(
  1. List<int> bytes
)

Implementation

factory BitBuffer.fromUInt8List(List<int> bytes) =>
    BitBuffer.fromBits(bytes, bitsPerIndex: 8);