argumentsBracesRegex property
matches {argument} 1 = pre character (to check ) 2 = actual argument 3 = post character is word, therefore ${...}
Implementation
static RegExp argumentsBracesRegex = RegExp(r'(.|^)\{(\w+)\}(\w)?');
matches {argument} 1 = pre character (to check ) 2 = actual argument 3 = post character is word, therefore ${...}
static RegExp argumentsBracesRegex = RegExp(r'(.|^)\{(\w+)\}(\w)?');