move method

Future<void> move(
  1. int from,
  2. int to
)

Moves form index to to index

moves(from,to)

from and to are index that is spesified to move

Implementation

Future<void> move(int from, int to) async => await _player.move(from, to);