operatingSystemVersion property

String operatingSystemVersion

A string representing the version of the operating system or platform.

Implementation

static String get operatingSystemVersion {
  try {
    return platform.operatingSystemVersion;
  } catch (e) {
    return '';
  }
}