Future<Funnels?> getFunnelsById(String id) async { var res = await dio.get<Map>("/crm/funnels/$id"); return Funnels.fromJson(res.data!["funnel"]); }