State constructor

State({
  1. required String name,
  2. required String countryCode,
  3. required String isoCode,
  4. String? latitude,
  5. String? longitude,
})

Implementation

State({
  required this.name,
  required this.countryCode,
  required this.isoCode,
  this.latitude,
  this.longitude,
});