move method

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

Implementation

Future<void> move(int from, int to) async {
  return await player.move(from, to);
}