MacroExpansion constructor

const MacroExpansion({
  1. required List<Token> tokens,
  2. required int numArgs,
  3. bool unexpandable = false,
})

Implementation

const MacroExpansion({
  required this.tokens,
  required this.numArgs,
  this.unexpandable = false,
});