translate method

  1. @override
void translate(
  1. double dx,
  2. double dy
)
override

Add a translation to the current transform, shifting the coordinate space horizontally by the first argument and vertically by the second argument.

Implementation

@override
void translate(double dx, double dy) {
  // TODO: implement translate
}