removeExtraTabs property

String get removeExtraTabs

removeExtraTabs: removes extra tabs from a string

Implementation

String get removeExtraTabs => this?.replaceAll(RegExp(r'\t+'), '\t') ?? "";