getPlatformVersion method
Get platform version.
Returns the version of the platform-specific implementation. This is typically used for debugging and compatibility checks.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version = await methodChannel.invokeMethod<String>(
'getPlatformVersion',
);
return version;
}