enforcementOutputAsBytes property

List<int> get enforcementOutputAsBytes

Implementation

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

Implementation

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