scanInstructionsAsBytes property

List<int> get scanInstructionsAsBytes

Implementation

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

Implementation

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