mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-10 02:43:12 +00:00
6819192219
Fixes #494 Reviewed-on: https://git.selfprivacy.org/SelfPrivacy/selfprivacy.org.app/pulls/501 Reviewed-by: Inex Code <inex.code@selfprivacy.org> Co-authored-by: NaiJi ✨ <naiji@noreply.git.selfprivacy.org> Co-committed-by: NaiJi ✨ <naiji@noreply.git.selfprivacy.org>
16 lines
334 B
Dart
16 lines
334 B
Dart
class ServerProviderLocation {
|
|
ServerProviderLocation({
|
|
required this.title,
|
|
required this.identifier,
|
|
required this.countryDisplayKey,
|
|
this.description,
|
|
this.flag = '',
|
|
});
|
|
|
|
final String title;
|
|
final String identifier;
|
|
final String countryDisplayKey;
|
|
final String? description;
|
|
final String flag;
|
|
}
|