toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final keyRotationTime = this.keyRotationTime;
final keyTrustLevel = this.keyTrustLevel;
final keyType = this.keyType;
final publicKey = this.publicKey;
return {
'keyRotationTime': ?keyRotationTime,
'keyTrustLevel': ?keyTrustLevel,
'keyType': ?keyType,
'publicKey': ?publicKey,
};
}