toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final angle = this.angle;
final offsetBottom = this.offsetBottom;
final offsetLeft = this.offsetLeft;
final offsetRight = this.offsetRight;
final offsetTop = this.offsetTop;
return {
'angle': ?angle,
'offsetBottom': ?offsetBottom,
'offsetLeft': ?offsetLeft,
'offsetRight': ?offsetRight,
'offsetTop': ?offsetTop,
};
}