versionCode property

Future<String> versionCode

The version code name of this application

Implementation

static Future<String> get versionCode async {
  final String version = await _channel.invokeMethod('getVersionCode');
  return version;
}