toMap method
Converts this configuration to a Map for JavaScript interop.
Implementation
Map<String, dynamic> toMap() {
return {
'spreadsheetMaximumContentHeightPerSheet':
spreadsheetMaximumContentHeightPerSheet,
'spreadsheetMaximumContentWidthPerSheet':
spreadsheetMaximumContentWidthPerSheet,
}..removeWhere((key, value) => value == null);
}