WriteImageData constructor

const WriteImageData(
  1. String stringToWrite,
  2. ByteData image, {
  3. int left = 0,
  4. int right = 0,
  5. int top = 0,
  6. int bottom = 0,
  7. int color = defaultColor,
  8. int fontSize = defaultFontSize,
})

Implementation

const WriteImageData(
  this.stringToWrite,
  this.image,
  {
    this.left = 0,
    this.right = 0,
    this.top = 0,
    this.bottom = 0,
    this.color = defaultColor,
    this.fontSize = defaultFontSize
  }
);