list method
Implementation
Future<List<Gym>> list() async {
String gymsListUrl =
"https://www.lectio.dk/lectio/login_list.aspx?showall=1";
var response = await Dio().get(gymsListUrl);
return await extractGyms(BeautifulSoup(response.data));
}