MacosConfig constructor

const MacosConfig({
  1. String cmake = 'cmake',
  2. CmakeGenerator? generator,
  3. String? generatorPath,
  4. String? compiler,
  5. String? deploymentTarget,
  6. bool universal = false,
  7. List<String> extraDefines = const [],
})

Implementation

const MacosConfig({
  this.cmake = 'cmake',
  this.generator,
  this.generatorPath,
  this.compiler,
  this.deploymentTarget,
  this.universal = false,
  this.extraDefines = const [],
});