From 915f37477b16fd33beda440f211a2df4a7d69c0b Mon Sep 17 00:00:00 2001 From: reasje Date: Tue, 4 Feb 2025 18:18:40 +0330 Subject: [PATCH] feat: Add getCookies event --- logic/lib/src/domain/const/js_channel/js_channel_events.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/logic/lib/src/domain/const/js_channel/js_channel_events.dart b/logic/lib/src/domain/const/js_channel/js_channel_events.dart index 6c4603a..338bda8 100644 --- a/logic/lib/src/domain/const/js_channel/js_channel_events.dart +++ b/logic/lib/src/domain/const/js_channel/js_channel_events.dart @@ -58,4 +58,7 @@ class JSChannelEvents { static const String bluetoothRemoteGATTCharacteristicWriteValueWithoutResponse = 'BluetoothRemoteGATTCharacteristic.writeValueWithoutResponse'; + + // Front-End required events + static const String getCookies = 'getCookies'; }