toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final dataSourceSheetProperties = this.dataSourceSheetProperties;
  final gridProperties = this.gridProperties;
  final hidden = this.hidden;
  final index = this.index;
  final rightToLeft = this.rightToLeft;
  final sheetId = this.sheetId;
  final sheetType = this.sheetType;
  final tabColor = this.tabColor;
  final tabColorStyle = this.tabColorStyle;
  final title = this.title;
  return {
    'dataSourceSheetProperties': ?dataSourceSheetProperties,
    'gridProperties': ?gridProperties,
    'hidden': ?hidden,
    'index': ?index,
    'rightToLeft': ?rightToLeft,
    'sheetId': ?sheetId,
    'sheetType': ?sheetType,
    'tabColor': ?tabColor,
    'tabColorStyle': ?tabColorStyle,
    'title': ?title,
  };
}