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