Group constructor

Group({
  1. required bool remember,
  2. List<List<Token>>? options,
  3. required List<Token>? stack,
  4. bool? followedBy,
  5. bool? notFollowedBy,
  6. bool? lookBehind,
})

Implementation

Group({
  required this.remember,
  this.options,
  required this.stack,
  this.followedBy,
  this.notFollowedBy,
  this.lookBehind,
}) : super(Types.GROUP);