diff --git a/lib/core/response_models/widgets_config_model.dart b/lib/core/response_models/widgets_config_model.dart index 028ca5b..ef93c27 100644 --- a/lib/core/response_models/widgets_config_model.dart +++ b/lib/core/response_models/widgets_config_model.dart @@ -24,12 +24,12 @@ class WidgetsConfigModel { WidgetsConfigModel.fromJson(Map json) { waitingAreaID = json['waitingAreaID']; waitingAreaName = json['waitingAreaName']; - isWeatherReq = true; - isPrayerTimeReq = true; - isRssFeedReq = true; - // isRssFeedReq = json['isRssFeedReq']; - // isWeatherReq = json['isWeatherReq']; - // isPrayerTimeReq = json['isPrayerTimeReq']; + // isWeatherReq = true; + // isPrayerTimeReq = true; + // isRssFeedReq = true; + isRssFeedReq = json['isRssFeedReq']; + isWeatherReq = json['isWeatherReq']; + isPrayerTimeReq = json['isPrayerTimeReq']; projectID = json['projectID']; projectLatitude = json['projectLatitude']; projectLongitude = json['projectLongitude'];