createFunnels method

Future<Funnels?> createFunnels(
  1. String name, {
  2. int currencyId = 1,
  3. bool isPrivate = true,
})

Implementation

Future<Funnels?> createFunnels(String name,
    {int currencyId = 1, bool isPrivate = true}) async {
  var res = await dio.post<Map>("/crm/funnels/",
      data: {"name": name, "currencyId": currencyId, "isPrivate": isPrivate});
  return Funnels.fromJson(res.data!["funnel"]);
}