toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  final Map<String, dynamic> data = <String, dynamic>{};
  if (location != null) data["location"] = location?.toJson();
  if (viewport != null) data["viewport"] = viewport?.toJson();
  return data;
}