acknowledge function
dynamic
acknowledge(
- dynamic id,
- 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}"),
);
}