toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final annotations = this.annotations;
final buildLogsUri = this.buildLogsUri;
final config = this.config;
final createTime = this.createTime;
final deleteTime = this.deleteTime;
final displayName = this.displayName;
final environment = this.environment;
final errors = this.errors;
final etag = this.etag;
final image = this.image;
final labels = this.labels;
final name = this.name;
final reconciling = this.reconciling;
final source = this.source;
final state = this.state;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'annotations': ?annotations,
'buildLogsUri': ?buildLogsUri,
'config': ?config,
'createTime': ?createTime,
'deleteTime': ?deleteTime,
'displayName': ?displayName,
'environment': ?environment,
'errors': ?errors,
'etag': ?etag,
'image': ?image,
'labels': ?labels,
'name': ?name,
'reconciling': ?reconciling,
'source': ?source,
'state': ?state,
'uid': ?uid,
'updateTime': ?updateTime,
};
}