toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attestation = this.attestation;
final createTime = this.createTime;
final cryptoKeyBackend = this.cryptoKeyBackend;
final expireEventTime = this.expireEventTime;
final expireTime = this.expireTime;
final generateTime = this.generateTime;
final importMethod = this.importMethod;
final name = this.name;
final protectionLevel = this.protectionLevel;
final publicKey = this.publicKey;
final state = this.state;
return {
'attestation': ?attestation,
'createTime': ?createTime,
'cryptoKeyBackend': ?cryptoKeyBackend,
'expireEventTime': ?expireEventTime,
'expireTime': ?expireTime,
'generateTime': ?generateTime,
'importMethod': ?importMethod,
'name': ?name,
'protectionLevel': ?protectionLevel,
'publicKey': ?publicKey,
'state': ?state,
};
}