CellDataList.fromJson constructor
Creates a CellDataList from a decoded JSON Map.
Implementation
CellDataList.fromJson(Map<String, dynamic> json) {
latitude = json['latitude'];
longitude = json['longitude'];
type = json['type'];
dbm = json['dbm'];
}