toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final csvExportOptions = this.csvExportOptions;
final database = this.database;
final gcsDestination = this.gcsDestination;
final sqlExportOptions = this.sqlExportOptions;
return {
'csvExportOptions': ?csvExportOptions,
'database': ?database,
'gcsDestination': ?gcsDestination,
'sqlExportOptions': ?sqlExportOptions,
};
}