CustomText constructor

const CustomText({
  1. Key? key,
  2. required String text,
  3. Color color = Colors.black,
  4. FontWeight fontWeight = FontWeight.w500,
  5. double fontsize = 15,
  6. TextAlign? textAlign,
  7. int? maxLines,
})

Implementation

const CustomText({
  super.key,
  required this.text,
  this.color = Colors.black,
  this.fontWeight = FontWeight.w500,
  this.fontsize = 15,
  this.textAlign,
  this.maxLines,
});