fromMatch method

  1. @override
TString? fromMatch(
  1. Match match
)
override

Implementation

@override
TString? fromMatch(Match match) {
  var text = match.group(1) ?? match.group(2)!;
  return TString(text);
}