WeatherMinutel.fromMap constructor

WeatherMinutel.fromMap(
  1. Map map
)

fromMap

Implementation

WeatherMinutel.fromMap(Map<dynamic, dynamic> map) {
  fxTime = map['fxTime'] ?? '';
  precip = map['precip'] ?? '';
  type = map['type'] ?? '';
}