2
0
mirror of https://gitlab.com/famedly/fluffychat.git synced 2025-06-19 09:07:22 +02:00
fluffychat/lib/utils/tor_stub.dart
TheOneWithTheBraid 66d87a6187 feat: implement session dump
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
2022-07-17 17:27:05 +02:00

8 lines
236 B
Dart

/// 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);
}