NormalVariadic constructor

NormalVariadic({
  1. String? description,
  2. RegExp? regExp,
})

Implementation

new({super.description, RegExp? regExp})
  : regex = regExp ?? RegExpValidated.anyToken;