getPlatformVersion method

Future<String?> getPlatformVersion()

Implementation

Future<String?> getPlatformVersion() async {
  if (!Platform.isAndroid) assert(false, 'Only Android is supported');

  return TinyUpgraderPlatform.instance.getPlatformVersion();
}