FontListSelectorWidget constructor

const FontListSelectorWidget({
  1. Key? key,
  2. required void onChangeFontName(
    1. String fontName
    ),
})

Implementation

const FontListSelectorWidget({
  super.key,
  required this.onChangeFontName,
});