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