scanInstructionsAsBytes property

List<int> scanInstructionsAsBytes

Implementation

core.List<core.int> get scanInstructionsAsBytes =>
    convert.base64.decode(scanInstructions!);
void scanInstructionsAsBytes=(List<int> bytes_)

Implementation

set scanInstructionsAsBytes(core.List<core.int> bytes_) {
  scanInstructions =
      convert.base64.encode(bytes_).replaceAll('/', '_').replaceAll('+', '-');
}