acknowledge function

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

Implementation

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