toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final attestedDeviceId = this.attestedDeviceId;
final deviceEnrollmentId = this.deviceEnrollmentId;
final devicePermanentId = this.devicePermanentId;
final signedPublicKeyAndChallenge = this.signedPublicKeyAndChallenge;
final verificationOutput = this.verificationOutput;
return {
'attestedDeviceId': ?attestedDeviceId,
'deviceEnrollmentId': ?deviceEnrollmentId,
'devicePermanentId': ?devicePermanentId,
'signedPublicKeyAndChallenge': ?signedPublicKeyAndChallenge,
'verificationOutput': ?verificationOutput,
};
}