Permutation constructor

Permutation({
  1. required Key itemKey,
  2. required int from,
  3. required int to,
})

Implementation

Permutation({
  required this.itemKey,
  required this.from,
  required this.to,
});