reTrimEnd top-level property
Used to match leading and trailing whitespace.
Implementation
final reTrim = RegExp(r"^\s+|\s+$"),
reTrimStart = RegExp(r"^\s+"),
reTrimEnd = RegExp(r"\s+$");
Used to match leading and trailing whitespace.
final reTrim = RegExp(r"^\s+|\s+$"),
reTrimStart = RegExp(r"^\s+"),
reTrimEnd = RegExp(r"\s+$");