FontPickerDialog constructor

const FontPickerDialog({
  1. Key? key,
  2. String? selectedFont,
  3. required ValueChanged<String> onFontSelected,
  4. required List<String> availableFonts,
})

Implementation

const FontPickerDialog({
  super.key,
  this.selectedFont,
  required this.onFontSelected,
  required this.availableFonts,
});