move method

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

Implementation

Future<void> move(int from, int to) {
  throw UnimplementedError(
    '[PlatformPlayer.move] is not implemented',
  );
}