CompilerOptions constructor

CompilerOptions({
  1. required ModuleFormat moduleFormat,
  2. required bool soundNullSafety,
  3. required bool canaryFeatures,
  4. required List<String> experiments,
})

Implementation

CompilerOptions({
  required this.moduleFormat,
  required this.soundNullSafety,
  required this.canaryFeatures,
  required this.experiments,
});