toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  Map<String, dynamic> map = {};
  map["topLeft"] = topLeft.toJson();
  map["topRight"] = topRight.toJson();
  map["bottomLeft"] = bottomLeft.toJson();
  map["bottomRight"] = bottomRight.toJson();
  return map;
}