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