chickenStyleTemplateContentWithFontFamily top-level property

String chickenStyleTemplateContentWithFontFamily
getter/setter pair

Implementation

String chickenStyleTemplateContentWithFontFamily = '''
  final regularFONT_SIZE = TextStyle(
      fontFamily: "FONT_FAMILY",
      fontSize: FONT_SIZE,
      color: COLOR_VALUE
  );

  final boldFONT_SIZE = TextStyle(
      fontFamily: "FONT_FAMILY",
      fontSize: FONT_SIZE,
      fontWeight: FontWeight.bold,
      color: COLOR_VALUE
  );

''';