permutations method

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

Implementation

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