getDefaultRuntime method

String getDefaultRuntime()

Implementation

String getDefaultRuntime() {
  switch (this) {
    case Platform.ios:
      return xcode.defaultiOSRuntime;
    default:
      throw PlatformNotImplementedException(this);
  }
}