FontRow constructor

const FontRow({
  1. required TextStyle font,
  2. required String size,
  3. required String weight,
  4. required String color,
  5. Key? key,
})

Implementation

const FontRow({
  required this.font,
  required this.size,
  required this.weight,
  required this.color,
  super.key,
});