toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final allSheets = this.allSheets;
final find = this.find;
final includeFormulas = this.includeFormulas;
final matchCase = this.matchCase;
final matchEntireCell = this.matchEntireCell;
final range = this.range;
final replacement = this.replacement;
final searchByRegex = this.searchByRegex;
final sheetId = this.sheetId;
return {
'allSheets': ?allSheets,
'find': ?find,
'includeFormulas': ?includeFormulas,
'matchCase': ?matchCase,
'matchEntireCell': ?matchEntireCell,
'range': ?range,
'replacement': ?replacement,
'searchByRegex': ?searchByRegex,
'sheetId': ?sheetId,
};
}