regexWhitespaces top-level property

RegExp regexWhitespaces
final

A regular expression to match a whitespace.

Implementation

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