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('+', '-');
}