toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final dimension = this.dimension;
final offset = this.offset;
final positionType = this.positionType;
final showAddressBar = this.showAddressBar;
final showMenuBar = this.showMenuBar;
final showScrollBar = this.showScrollBar;
final showStatusBar = this.showStatusBar;
final showToolBar = this.showToolBar;
final title = this.title;
return {
'dimension': ?dimension,
'offset': ?offset,
'positionType': ?positionType,
'showAddressBar': ?showAddressBar,
'showMenuBar': ?showMenuBar,
'showScrollBar': ?showScrollBar,
'showStatusBar': ?showStatusBar,
'showToolBar': ?showToolBar,
'title': ?title,
};
}