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