Runtime constructor

const Runtime(
  1. String name,
  2. String identifier,
  3. Compiler defaultCompiler,
  4. List<Compiler> supportedCompilers,
  5. {bool isDartVM = false,
  6. bool isBrowser = false,
  7. bool isJS = false,
  8. bool isBlink = false,
  9. bool isHeadless = false,
  10. bool isWasm = false}
)

Implementation

const Runtime(
    this.name, this.identifier, this.defaultCompiler, this.supportedCompilers,
    {this.isDartVM = false,
    this.isBrowser = false,
    this.isJS = false,
    this.isBlink = false,
    this.isHeadless = false,
    this.isWasm = false})
    : parent = null;