BusinessAreas.fromJson constructor

BusinessAreas.fromJson(
  1. Map<String, dynamic> json
)

Implementation

BusinessAreas.fromJson(Map<String, dynamic> json) {
  centerPoint = json['centerPoint'] != null ? LatLng.fromJson(json['centerPoint']) : null;
  name = json['name'];
}