versionName property

String? get versionName

The version name of this extension, app, or theme if the manifest specified one.

Implementation

String? get versionName => _wrapped.versionName;
set versionName (String? v)

Implementation

set versionName(String? v) {
  _wrapped.versionName = v;
}