mirror of
https://github.com/madari-media/madari-oss.git
synced 2026-04-19 13:12:05 +00:00
5 lines
112 B
Dart
5 lines
112 B
Dart
class DeviceDetector {
|
|
static bool isTV() {
|
|
return const String.fromEnvironment('is_tv') == 'true';
|
|
}
|
|
}
|