toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final condition = this.condition;
final createTime = this.createTime;
final inventory = this.inventory;
final labels = this.labels;
final name = this.name;
final networkDependencies = this.networkDependencies;
final performanceData = this.performanceData;
final recentExecutions = this.recentExecutions;
final showHidden = this.showHidden;
final signedUriDestination = this.signedUriDestination;
final updateTime = this.updateTime;
return {
'condition': ?condition,
'createTime': ?createTime,
'inventory': ?inventory,
'labels': ?labels,
'name': ?name,
'networkDependencies': ?networkDependencies,
'performanceData': ?performanceData,
'recentExecutions': ?recentExecutions,
'showHidden': ?showHidden,
'signedUriDestination': ?signedUriDestination,
'updateTime': ?updateTime,
};
}