toJson method

Map<String, dynamic> toJson()

Implementation

Map<String, dynamic> toJson() {
  var map = <String, dynamic>{};
  if (_northeast != null) {
    map['northeast'] = _northeast?.toJson();
  }
  if (_southwest != null) {
    map['southwest'] = _southwest?.toJson();
  }
  return map;
}