regexWhitespaces top-level property

RegExp regexWhitespaces
final

A regular expression to match a whitespace.

Implementation

final regexWhitespaces = RegExp(
    r'[\t\n\v\r\f' + String.fromCharCodes(_whitespacesA) + ']');