permutations method

Permutations<String> permutations([
  1. int? take
])

Implementation

Permutations<String> permutations([int? take]) {
  take = take ?? this.length;
  return Permutations<String>(take, characters(this));
}