mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 07:15:43 -06:00
8 lines
227 B
Dart
8 lines
227 B
Dart
extension SizeLimitedString on String {
|
|
String withLengthLimitedTo(int length, [String overflow = "..."]) {
|
|
return this.length > length
|
|
? '${substring(0, length - overflow.length)}$overflow'
|
|
: this;
|
|
}
|
|
}
|