nudgeSelected method
Moves the selected object with keyboard-style step sizes.
Implementation
bool nudgeSelected({double dx = 0, double dy = 0, bool largeStep = false}) {
final step = largeStep ? 10.0 : 1.0;
return moveSelectedBy(dx * step, dy * step);
}