toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dataset = this.dataset;
final force = this.force;
final partitionSpec = this.partitionSpec;
final separateTablesPerAssetType = this.separateTablesPerAssetType;
final table = this.table;
return {
'dataset': ?dataset,
'force': ?force,
'partitionSpec': ?partitionSpec,
'separateTablesPerAssetType': ?separateTablesPerAssetType,
'table': ?table,
};
}