dollarOnlyRegex property

RegExp dollarOnlyRegex
getter/setter pair

matches only $ but not $

Implementation

static RegExp dollarOnlyRegex = RegExp(r'([^\\]|^)\$( |$)');