textWithoutReplacements property

String get textWithoutReplacements

Implementation

String get textWithoutReplacements {
  final String char = String.fromCharCode(kObjectReplacementChar);
  return text.replaceAll(RegExp(char), '');
}