TextPosition constructor

const TextPosition({
  1. double? x,
  2. double? y,
  3. double? dx,
  4. double? dy,
  5. bool reset = false,
  6. AffineMatrix? transform,
})

Implementation

const TextPosition({
  this.x,
  this.y,
  this.dx,
  this.dy,
  this.reset = false,
  this.transform,
});