acknowledge function

dynamic acknowledge(
  1. dynamic id,
  2. dynamic userId,
  3. dynamic type
)

Implementation

acknowledge(id, userId, type) async {
  await client.get(
    Uri.parse(
        "$baseUrl/tenant/${Config.tenantId}/client/acknowledge?id=$id&userId=$userId&device=${Platform.operatingSystem}&type=$type"),
  );
}