Locale constructor

Locale({
  1. required String ip,
  2. required String countryCode,
  3. required String country,
  4. required String continentCode,
  5. required String continent,
  6. required bool eu,
  7. required String currency,
  8. String? city,
  9. String? timeZone,
  10. String? postalCode,
  11. double? latitude,
  12. double? longitude,
  13. String? autonomousSystemNumber,
  14. String? autonomousSystemOrganization,
  15. String? isp,
  16. String? connectionType,
  17. String? connectionUsageType,
  18. String? connectionOrganization,
})

Implementation

Locale({
  required this.ip,
  required this.countryCode,
  required this.country,
  required this.continentCode,
  required this.continent,
  required this.eu,
  required this.currency,
  this.city,
  this.timeZone,
  this.postalCode,
  this.latitude,
  this.longitude,
  this.autonomousSystemNumber,
  this.autonomousSystemOrganization,
  this.isp,
  this.connectionType,
  this.connectionUsageType,
  this.connectionOrganization,
});