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