class ServerProviderLocation { ServerProviderLocation({ required this.title, required this.identifier, required this.country, this.description, this.flag = '', }); final String title; final String identifier; final String country; final String? description; final String flag; }