scottyCustomerLogAsBytes property

List<int> scottyCustomerLogAsBytes

Implementation

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

Implementation

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