Province constructor

Province({
  1. required String name,
  2. required String province_code,
  3. required LatLng latLng,
  4. required String? type,
  5. List<City>? cities,
})

Implementation

Province({
  required this.name,
  required this.province_code,
  required this.latLng,
  required this.type,
  this.cities,
});