toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dataset != null) 'dataset': dataset!,
  if (force != null) 'force': force!,
  if (partitionSpec != null) 'partitionSpec': partitionSpec!,
  if (separateTablesPerAssetType != null)
    'separateTablesPerAssetType': separateTablesPerAssetType!,
  if (table != null) 'table': table!,
};