CustomText constructor

const CustomText({
  1. Key? key,
  2. required String content,
  3. double? textSize = 12,
  4. FontWeight? fontWeight,
  5. Color? color,
  6. String? sizeType,
  7. bool overflowEllipse = true,
})

Implementation

const CustomText({
  super.key,
  required this.content,
  this.textSize = 12,
  this.fontWeight,
  this.color,
  this.sizeType,
  this.overflowEllipse = true,
});