Locale constructor
Locale({
- required String ip,
- required String countryCode,
- required String country,
- required String continentCode,
- required String continent,
- required bool eu,
- required String currency,
- String? city,
- String? timeZone,
- String? postalCode,
- double? latitude,
- double? longitude,
- String? autonomousSystemNumber,
- String? autonomousSystemOrganization,
- String? isp,
- String? connectionType,
- String? connectionUsageType,
- 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,
});