CityRecursiveModel constructor
CityRecursiveModel(
- dynamic jsonStr
Implementation
factory CityRecursiveModel(jsonStr) => jsonStr is String
? CityRecursiveModel.fromJson(json.decode(jsonStr))
: CityRecursiveModel.fromJson(jsonStr);