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('+', '-');
}