CustomText constructor

const CustomText({
  1. Key? key,
  2. String? text,
  3. double? fontSize,
  4. String? fontColor,
  5. bool isBold = false,
})

Implementation

const CustomText({
  Key? key,
  this.text,
  this.fontSize,
  this.fontColor,
  this.isBold = false,
}) : super(key: key);