CustomText constructor

const CustomText({
  1. Key? key,
  2. required String text,
  3. TextStyle? textStyle,
})

Implementation

const CustomText({
  super.key,
  required this.text,
  this.textStyle,
});