PITagText constructor

const PITagText({
  1. Key? key,
  2. required String text,
  3. double? holderHeight,
  4. Color? backgroudColor,
  5. Color? textColor,
  6. double? fontSize,
  7. double? height,
  8. bool? marginLeft,
  9. bool? marginRight,
})

Implementation

const PITagText({
  Key? key,
  required this.text,
  this.holderHeight,
  this.backgroudColor,
  this.textColor,
  this.fontSize,
  this.height,
  this.marginLeft,
  this.marginRight,
}) : super(key: key);