toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  Map<String, dynamic> rst = {};
  rst["left"] = this.left;
  rst["right"] = this.right;
  rst["top"] = this.top;
  rst["bottom"] = this.bottom;
  return rst;
}