codepointsToString function

  1. @deprecated
String codepointsToString(
  1. List<int> codepoints
)

Generate a string from the provided Unicode codepoints.

Deprecated Use String.fromCharCodes instead.

Implementation

@deprecated
String codepointsToString(List<int> codepoints) {
  return String.fromCharCodes(codepoints);
}