getPlatformVersion method
Implementation
Future<String?> getPlatformVersion() async{
final version = await _instance.getPlatformVersion();
final prefs = await SharedPreferences.getInstance();
if(version != null) {
prefs.setString('PlatformVersion', version);
}
return version;
}