getPlatformVersion method
Retrieves the platform version (debug/info utility).
Implementation
@override
Future<String?> getPlatformVersion() async {
try {
return await _channel.invokeMethod<String>('getPlatformVersion');
} catch (_) {
return 'Linux';
}
}