moveLeft method

void moveLeft(
  1. double amount
)

Implementation

void moveLeft(double amount) {
  moveRight(-amount);
}