sigAsBytes property

List<int> sigAsBytes

Implementation

core.List<core.int> get sigAsBytes => convert.base64.decode(sig!);
void sigAsBytes=(List<int> _bytes)

Implementation

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