currentFont property

ValueNotifier<FontConfig> currentFont
getter/setter pair

Implementation

ValueNotifier<FontConfig> currentFont = ValueNotifier<FontConfig>(
  FontConfig(
    source: AppFontSource.google,
    googleFont: ([base]) => GoogleFonts.montserrat(textStyle: base),
  ),
);