TextSpecs constructor

TextSpecs({
  1. required bool addText,
  2. String? customText,
  3. String? customTextPosition,
  4. String? customTextColor,
})

Implementation

TextSpecs({
  required this.addText,
  this.customText,
  this.customTextPosition,
  this.customTextColor,
});