position method

TextDrawer<App> position(
  1. num x,
  2. num y
)

Implementation

TextDrawer position(num x, num y) {
  _startX = x.toDouble();
  _x = x.toDouble();
  _y = y.toDouble();
  return this;
}