translate method
Implementation
StyleContext translate({double x = 0, double y = 0}) {
_translation = _translation + Offset(x, y);
return this;
}
StyleContext translate({double x = 0, double y = 0}) {
_translation = _translation + Offset(x, y);
return this;
}