reTrimEnd top-level property

RegExp reTrimEnd
final

Used to match leading and trailing whitespace.

Implementation

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