FontList constructor

FontList({
  1. Key? key,
  2. required List<FontDetail> fons,
  3. required dynamic onChanged({
    1. String? imgPath,
    2. FontDetail? item,
    3. String? ttfPath,
    }),
  4. FontDetail? fontDetail,
})

Implementation

FontList(
    {super.key,
    required this.fons,
    required this.onChanged,
    this.fontDetail});