attestationStatementAsBytes property

List<int> attestationStatementAsBytes

Implementation

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

Implementation

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