Future<Deal> getDealById(String id) async { var res = await dio.get("/crm/deals/$id"); return Deal.fromJson(res.data["deal"]); }