mirror of
https://gitlab.com/famedly/fluffychat.git
synced 2024-11-06 03:59:28 +01:00
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);
|
||
|
}
|