enforcementOutputAsBytes property

List<int> enforcementOutputAsBytes

Implementation

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

Implementation

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