isMobilePlatform property Null safety
Not really a setting, but we need it in the same places: Is it possible to set the screen orientation on this device? It is iff we're a native mobile app.
Implementation
bool get isMobilePlatform =>
!kIsWeb && (Platform.isIOS || Platform.isAndroid || Platform.isFuchsia);