toJson method
Implementation
Map<String, Object?> toJson() {
var raw = this.raw;
var storage = this.storage;
var atlasDocFormat = this.atlasDocFormat;
var view = this.view;
final json = <String, Object?>{};
if (raw != null) {
json[r'raw'] = raw.toJson();
}
if (storage != null) {
json[r'storage'] = storage.toJson();
}
if (atlasDocFormat != null) {
json[r'atlas_doc_format'] = atlasDocFormat.toJson();
}
if (view != null) {
json[r'view'] = view.toJson();
}
return json;
}