delSurrogate function

String delSurrogate(
  1. String text
)

Implementation

String delSurrogate(String text) {
  // Dart handles surrogates natively
  return text;
}