StringList.fromStrings constructor

StringList.fromStrings(
  1. Iterable<String> strings
)
Initializes a new instance of the The strings.

Implementation

StringList.fromStrings(Iterable<String> strings) {
  this.AddRange(strings);
}