CityItem constructor

CityItem({
  1. Color cityColor = shallowColor,
  2. required String cityName,
  3. bool isSelected = false,
})

Implementation

CityItem(
    {this.cityColor = shallowColor,
    required this.cityName,
    this.isSelected = false});