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