attestationStatementAsBytes property

List<int> get attestationStatementAsBytes

Implementation

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

Implementation

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