Root constructor

Root(
  1. {List<String>? flags,
  2. List<List<Token>>? options,
  3. required List<Token>? stack}
)

Implementation

Root({
  this.flags,
  this.options,
  required this.stack,
}) : super(Types.ROOT);