removeLast property
String
get
removeLast
Removes last element
Implementation
String get removeLast => length > 1 ? substring(0, length - 1) : '';
Removes last element
String get removeLast => length > 1 ? substring(0, length - 1) : '';