2022-10-13 23:13:56 +00:00
|
|
|
class ServerProviderLocation {
|
|
|
|
ServerProviderLocation({
|
|
|
|
required this.title,
|
2022-10-14 19:00:44 +00:00
|
|
|
required this.identifier,
|
2024-04-24 09:54:32 +00:00
|
|
|
required this.countryDisplayKey,
|
2022-10-13 23:13:56 +00:00
|
|
|
this.description,
|
2023-07-17 15:23:17 +00:00
|
|
|
this.flag = '',
|
2022-10-13 23:13:56 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
final String title;
|
2022-10-14 19:00:44 +00:00
|
|
|
final String identifier;
|
2024-04-24 09:54:32 +00:00
|
|
|
final String countryDisplayKey;
|
2022-10-13 23:13:56 +00:00
|
|
|
final String? description;
|
2023-07-17 15:23:17 +00:00
|
|
|
final String flag;
|
2022-10-13 23:13:56 +00:00
|
|
|
}
|