toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final angle = this.angle;
final bottomOffset = this.bottomOffset;
final leftOffset = this.leftOffset;
final rightOffset = this.rightOffset;
final topOffset = this.topOffset;
return {
'angle': ?angle,
'bottomOffset': ?bottomOffset,
'leftOffset': ?leftOffset,
'rightOffset': ?rightOffset,
'topOffset': ?topOffset,
};
}