version property
The version of the current Dart runtime if applicable. The returned String is formatted as the Semantic Versioning string of the current dart runtime, possibly followed by whitespace and other version and build details. For other platforms string is in the free format. Gets the stored version of the Dart runtime.
Implementation
static String? get version => $prototype.version;
The version of the current Dart runtime if applicable. The returned String is formatted as the Semantic Versioning string of the current dart runtime, possibly followed by whitespace and other version and build details. For other platforms string is in the free format. Sets the version of the Dart runtime.
Implementation
static set version(String? value) { $prototype.version = value; }