FontFamily constructor

const FontFamily({
  1. Key? key,
  2. required FontWeight weight,
  3. required String name,
  4. required String asset,
})

Implementation

const FontFamily({
  super.key,
  required this.weight,
  required this.name,
  required this.asset,
});