toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final createTime = this.createTime;
final exportResult = this.exportResult;
final exportSpec = this.exportSpec;
final importResult = this.importResult;
final importSpec = this.importSpec;
final labels = this.labels;
final name = this.name;
final status = this.status;
final type = this.type;
final uid = this.uid;
final updateTime = this.updateTime;
return {
'createTime': ?createTime,
'exportResult': ?exportResult,
'exportSpec': ?exportSpec,
'importResult': ?importResult,
'importSpec': ?importSpec,
'labels': ?labels,
'name': ?name,
'status': ?status,
'type': ?type,
'uid': ?uid,
'updateTime': ?updateTime,
};
}