ensureOsSupported function

void ensureOsSupported()

Implementation

void ensureOsSupported() {
  if (!Platform.isAndroid) {
    throw OSNotSupportedError();
  }
}