TextCmd constructor

TextCmd(
  1. String text, {
  2. required int fontsize,
  3. required Color fontcolor,
  4. double? x,
  5. double? y,
  6. int? rotate,
  7. Color? bgcolor,
  8. int? start,
  9. int? end,
  10. FontFile? fontFile,
})

Implementation

TextCmd(
  this.text, {
  required this.fontsize,
  required this.fontcolor,
  this.x,
  this.y,
  this.rotate,
  this.bgcolor,
  this.start,
  this.end,
  this.fontFile,
});