trimToSize method
Trims the capacity to the current length.
Implementation
StringBuilder trimToSize() {
// No-op in Dart since StringBuffer doesn't have excess capacity
return this;
}
Trims the capacity to the current length.
StringBuilder trimToSize() {
// No-op in Dart since StringBuffer doesn't have excess capacity
return this;
}