mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-05 11:39:30 +01:00
66d87a6187
Signed-off-by: TheOneWithTheBraid <the-one@with-the-braid.cf>
8 lines
236 B
Dart
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);
|
|
}
|