StateModel constructor

StateModel({
  1. required String id,
  2. required String name,
  3. required String countryId,
  4. String? stateCode,
  5. String? type,
})

Implementation

StateModel({
  required this.id,
  required this.name,
  required this.countryId,
  this.stateCode,
  this.type,
});