toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final bottom = this.bottom;
final innerHorizontal = this.innerHorizontal;
final innerVertical = this.innerVertical;
final left = this.left;
final range = this.range;
final right = this.right;
final top = this.top;
return {
'bottom': ?bottom,
'innerHorizontal': ?innerHorizontal,
'innerVertical': ?innerVertical,
'left': ?left,
'range': ?range,
'right': ?right,
'top': ?top,
};
}