MatchZeroOrMore constructor

const MatchZeroOrMore(
  1. RegExpComponent expression, [
  2. bool isLazy = false
])

Attach * to the end expression, optionally adding ? if isLazy is true

Implementation

const MatchZeroOrMore(RegExpComponent expression, [bool isLazy = false,]) : super(expression, isLazy,);