getPlatformVersion method
Implementation
@override
Future<String?> getPlatformVersion() async {
debugPrint('MethodChannel: Invoking getPlatformVersion');
final version = await methodChannel.invokeMethod<String>('getPlatformVersion');
debugPrint('MethodChannel: getPlatformVersion result: $version');
return version;
}