fontName property

String? get fontName

Implementation

static String? get fontName {
  try {
    final family = GetIt.I<FontSizeController>().fontFamily.value;
    return family.fontFamily ?? 'Poppins';
  } catch (_) {
    return 'Poppins';
  }
}