toJson method

Map<String, dynamic> toJson()

Implementation

core.Map<core.String, core.dynamic> toJson() => {
  if (dimension != null) 'dimension': dimension!,
  if (offset != null) 'offset': offset!,
  if (positionType != null) 'positionType': positionType!,
  if (showAddressBar != null) 'showAddressBar': showAddressBar!,
  if (showMenuBar != null) 'showMenuBar': showMenuBar!,
  if (showScrollBar != null) 'showScrollBar': showScrollBar!,
  if (showStatusBar != null) 'showStatusBar': showStatusBar!,
  if (showToolBar != null) 'showToolBar': showToolBar!,
  if (title != null) 'title': title!,
};