trim characters from the right-side of the input
String rtrim(String str, [String? chars]) { final pattern = chars != null ? RegExp('[$chars]+\$') : RegExp(r'\s+$'); return str.replaceAll(pattern, ''); }