toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final bandedRanges = this.bandedRanges;
  final basicFilter = this.basicFilter;
  final charts = this.charts;
  final columnGroups = this.columnGroups;
  final conditionalFormats = this.conditionalFormats;
  final data = this.data;
  final developerMetadata = this.developerMetadata;
  final filterViews = this.filterViews;
  final merges = this.merges;
  final properties = this.properties;
  final protectedRanges = this.protectedRanges;
  final rowGroups = this.rowGroups;
  final slicers = this.slicers;
  final tables = this.tables;
  return {
    'bandedRanges': ?bandedRanges,
    'basicFilter': ?basicFilter,
    'charts': ?charts,
    'columnGroups': ?columnGroups,
    'conditionalFormats': ?conditionalFormats,
    'data': ?data,
    'developerMetadata': ?developerMetadata,
    'filterViews': ?filterViews,
    'merges': ?merges,
    'properties': ?properties,
    'protectedRanges': ?protectedRanges,
    'rowGroups': ?rowGroups,
    'slicers': ?slicers,
    'tables': ?tables,
  };
}