removeExtraTabs property
String
get
removeExtraTabs
removeExtraTabs: removes extra tabs from a string
Implementation
String get removeExtraTabs => this?.replaceAll(RegExp(r'\t+'), '\t') ?? "";
removeExtraTabs: removes extra tabs from a string
String get removeExtraTabs => this?.replaceAll(RegExp(r'\t+'), '\t') ?? "";