Gets the menu with the given id
Future<Menu> getMenuById(int id) async { final response = await _get('/api/menu/$id'); return Menu.fromJson(response.data); }