challengeResponseAsBytes property

List<int> get challengeResponseAsBytes

Implementation

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

Implementation

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