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