removeWhiteSpace property

Text get removeWhiteSpace

Implementation

Text get removeWhiteSpace {
  return copyWith(text: data!.replaceAll(RegExp(r'\s+'), ''));
}