toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final appHubApplication = this.appHubApplication;
final artifactConfigs = this.artifactConfigs;
final createTime = this.createTime;
final errors = this.errors;
final labels = this.labels;
final name = this.name;
final projects = this.projects;
final reconciling = this.reconciling;
final runtimeConfigs = this.runtimeConfigs;
final state = this.state;
final updateTime = this.updateTime;
return {
'annotations': ?annotations,
'appHubApplication': ?appHubApplication,
'artifactConfigs': ?artifactConfigs,
'createTime': ?createTime,
'errors': ?errors,
'labels': ?labels,
'name': ?name,
'projects': ?projects,
'reconciling': ?reconciling,
'runtimeConfigs': ?runtimeConfigs,
'state': ?state,
'updateTime': ?updateTime,
};
}