strip method
If exists, all ANSI sequences will be removed from this string.
Implementation
String strip() {
// ignore: unnecessary_this
return this.replaceAll(ansiPattern, '');
}
If exists, all ANSI sequences will be removed from this string.
String strip() {
// ignore: unnecessary_this
return this.replaceAll(ansiPattern, '');
}