toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
      if (allSheets != null) 'allSheets': allSheets!,
      if (find != null) 'find': find!,
      if (includeFormulas != null) 'includeFormulas': includeFormulas!,
      if (matchCase != null) 'matchCase': matchCase!,
      if (matchEntireCell != null) 'matchEntireCell': matchEntireCell!,
      if (range != null) 'range': range!,
      if (replacement != null) 'replacement': replacement!,
      if (searchByRegex != null) 'searchByRegex': searchByRegex!,
      if (sheetId != null) 'sheetId': sheetId!,
    };