Creates a list of Server from JSON data.
static List<Server> listFromJson(Iterable<Map<String, dynamic>> list) { return list.map((e) => Server.fromJson(e)).toList(); }