CityRecursiveModel constructor

CityRecursiveModel(
  1. dynamic jsonStr
)

Implementation

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