Future<bool> deleteDealById( String id, ) async { var res = await dio.delete( "/crm/deals/$id", ); return res.data["success"]; }