State constructor

State({
  1. int? id,
  2. String? name,
  3. int? countryId,
  4. List<City>? city,
})

Implementation

State({this.id, this.name, this.countryId, this.city});