chickenStyleTemplateContentFull top-level property

String chickenStyleTemplateContentFull
getter/setter pair

Implementation

String chickenStyleTemplateContentFull = '''
  final regularFONT_SIZE = TextStyle(
      fontSize: FONT_SIZE,
      color: COLOR_VALUE
  );

  final regularFONT_SIZEItalic = TextStyle(
      fontStyle: FontStyle.italic,
      fontSize: FONT_SIZE,
      color: COLOR_VALUE
  );

  final regularFONT_SIZEUnderline = TextStyle(
      decoration: TextDecoration.underline,
      fontSize: FONT_SIZE,
      color: COLOR_VALUE
  );

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

  final boldFONT_SIZEItalic = TextStyle(
      fontStyle: FontStyle.italic,
      fontSize: FONT_SIZE,
      fontWeight: FontWeight.bold,
      color: COLOR_VALUE
  );

  final boldFONT_SIZEUnderline = TextStyle(
      decoration: TextDecoration.underline,
      fontSize: FONT_SIZE,
      fontWeight: FontWeight.bold,
      color: COLOR_VALUE
  );
''';