version property

Future<String> get version

Get the version

Implementation

static Future<String> get version async {
  _info ??= await PackageInfo.fromPlatform();
  return _info!.version;
}