State constructor

State({
  1. int? id,
  2. String? name,
  3. int? countryId,
  4. String? countryCode,
  5. String? countryName,
  6. String? stateCode,
  7. String? type,
  8. String? latitude,
  9. String? longitude,
})

Implementation

State({
  this.id,
  this.name,
  this.countryId,
  this.countryCode,
  this.countryName,
  this.stateCode,
  this.type,
  this.latitude,
  this.longitude,
});