Dart API Referencedart:coreimplStringImplementation

StringImplementation class

class StringImplementation {
  /**
   * Factory implementation of String.fromCharCodes:
   * Allocates a new String for the specified [charCodes].
   */
  factory String.fromCharCodes(List<int> charCodes) {
    return _fromCharCodes(charCodes);
  }

  external static String _fromCharCodes(List<int> charCodes);

  /**
   * Joins all the given strings to create a new string.
   */
  external static String join(List<String> strings, String separator);

  /**
   * Concatenates all the given strings to create a new string.
   */
  external static String concatAll(List<String> strings);

}

Static Methods

String join(List<String> strings, String separator) #

Joins all the given strings to create a new string.

external static String join(List<String> strings, String separator);

String concatAll(List<String> strings) #

Concatenates all the given strings to create a new string.

external static String concatAll(List<String> strings);

Constructors

factory String.fromCharCodes(List<int> charCodes) #

Factory implementation of String.fromCharCodes: Allocates a new String for the specified charCodes.

factory String.fromCharCodes(List<int> charCodes) {
  return _fromCharCodes(charCodes);
}