CustomCommand constructor

CustomCommand(
  1. String name,
  2. int numArgs,
  3. List<LatexNode> definition, {
  4. String? defaultArg,
  5. bool acceptsDelimiterModifier = false,
})

Implementation

CustomCommand(
  this.name,
  this.numArgs,
  this.definition, {
  this.defaultArg,
  this.acceptsDelimiterModifier = false,
});