toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final left = this.left;
final positionOption = this.positionOption;
final top = this.top;
final windowHeight = this.windowHeight;
final windowWidth = this.windowWidth;
return {
'left': ?left,
'positionOption': ?positionOption,
'top': ?top,
'windowHeight': ?windowHeight,
'windowWidth': ?windowWidth,
};
}