newClientStateAsBytes property

List<int> get newClientStateAsBytes

Implementation

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

Implementation

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