regexWhitespaces top-level property
A regular expression to match a whitespace.
Implementation
final regexWhitespaces = new RegExp(
r'[\t\n\v\r\f' + new String.fromCharCodes(_whitespacesA) +']');
A regular expression to match a whitespace.
final regexWhitespaces = new RegExp(
r'[\t\n\v\r\f' + new String.fromCharCodes(_whitespacesA) +']');