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 isBlink = false,
  8. bool isHeadless = false,
})

Implementation

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