toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final exportJobState = this.exportJobState;
final exportedImageDigest = this.exportedImageDigest;
final status = this.status;
final tag = this.tag;
return {
'exportJobState': ?exportJobState,
'exportedImageDigest': ?exportedImageDigest,
'status': ?status,
'tag': ?tag,
};
}