feat: implement session dump

Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
This commit is contained in:
TheOneWithTheBraid 2022-04-29 07:26:01 +02:00
commit 56ba2341f4
10 changed files with 203 additions and 5 deletions

7
lib/utils/tor_stub.dart Normal file
View file

@ -0,0 +1,7 @@
/// Stub class for [TorBrowserDetector]
///
/// statically returns false as Tor **browser** can only be detected in a
/// **browser**.
abstract class TorBrowserDetector {
static Future<bool> get isTorBrowser => Future.value(false);
}