Macro constructor

const Macro({
  1. Map<String, String>? defines,
  2. bool processIncludes = true,
  3. bool expandPredefined = true,
})

Creates a new Macro annotation with the specified configuration.

Implementation

const Macro({
  this.defines,
  this.processIncludes = true,
  this.expandPredefined = true,
});