mirror of
https://git.selfprivacy.org/kherel/selfprivacy.org.app.git
synced 2024-11-03 07:27:17 +00:00
16 lines
275 B
Dart
16 lines
275 B
Dart
class ServerProviderLocation {
|
|
ServerProviderLocation({
|
|
required this.title,
|
|
required this.identifier,
|
|
this.description,
|
|
this.flag,
|
|
});
|
|
|
|
final String title;
|
|
final String identifier;
|
|
final String? description;
|
|
|
|
/// as emoji
|
|
final String? flag;
|
|
}
|