FontPickerDropdown constructor

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

Implementation

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