move method

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

Implementation

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