toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() {
  final description = this.description;
  final editors = this.editors;
  final namedRangeId = this.namedRangeId;
  final protectedRangeId = this.protectedRangeId;
  final range = this.range;
  final requestingUserCanEdit = this.requestingUserCanEdit;
  final tableId = this.tableId;
  final unprotectedRanges = this.unprotectedRanges;
  final warningOnly = this.warningOnly;
  return {
    'description': ?description,
    'editors': ?editors,
    'namedRangeId': ?namedRangeId,
    'protectedRangeId': ?protectedRangeId,
    'range': ?range,
    'requestingUserCanEdit': ?requestingUserCanEdit,
    'tableId': ?tableId,
    'unprotectedRanges': ?unprotectedRanges,
    'warningOnly': ?warningOnly,
  };
}