bytesToSignAsBytes property

List<int> get bytesToSignAsBytes

Implementation

core.List<core.int> get bytesToSignAsBytes =>
    convert.base64.decode(bytesToSign!);
set bytesToSignAsBytes (List<int> bytes_)

Implementation

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