getPlatformVersion method
Retrieves the platform version of the StorifyMe Snaps plugin.
This method returns a String representing the platform version.
Implementation
@override
Future<String?> getPlatformVersion() async {
final version =
await methodChannel.invokeMethod<String>('getPlatformVersion');
return version;
}