reTrimStart top-level property

RegExp reTrimStart
final

Used to match leading and trailing whitespace.

Implementation

final reTrim = RegExp(r"^\s+|\s+$"),
    reTrimStart = RegExp(r"^\s+"),
    reTrimEnd = RegExp(r"\s+$");