menu
yjy_flutter_printer_plus package
documentation
flutter_printer_plus.dart
VP8BitReader
getValue method
getValue method
dark_mode
light_mode
getValue
method
int
getValue
(
int
bits
)
Implementation
int getValue(int bits) { var v = 0; while (bits-- > 0) { v |= getBit(0x80) << bits; } return v; }
yjy_flutter_printer_plus package
documentation
flutter_printer_plus
VP8BitReader
getValue method
VP8BitReader class