toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final destination = this.destination;
final featureSelector = this.featureSelector;
final fullExport = this.fullExport;
final settings = this.settings;
final snapshotExport = this.snapshotExport;
return {
'destination': ?destination,
'featureSelector': ?featureSelector,
'fullExport': ?fullExport,
'settings': ?settings,
'snapshotExport': ?snapshotExport,
};
}