FontTextWidget constructor

const FontTextWidget({
  1. Key? key,
  2. required String text,
  3. double fontSize = 20,
})

Implementation

const FontTextWidget({
  super.key,
  required this.text,
  this.fontSize = 20,
});