toJson method
Implementation
Map<String, dynamic> toJson() {
final _json = <String, dynamic>{};
_json['appId'] = appId;
_json['qosVersion'] = qosVersion;
_json['pivotContainerImageUrl'] = pivotContainerImageUrl;
_json['pivotPath'] = pivotPath;
_json['pivotArgs'] = pivotArgs;
_json['expectedPivotDigest'] = expectedPivotDigest;
_json['hostContainerImageUrl'] = hostContainerImageUrl;
_json['hostPath'] = hostPath;
_json['hostArgs'] = hostArgs;
if (nonce != null) {
_json['nonce'] = nonce;
}
return _json;
}