styles property

  1. @css
List<StyleRule> get styles

Implementation

@css
static List<StyleRule> get styles => [
  css('.dropcap + p:first-letter').styles(
    fontSize: 5.em,
    lineHeight: 0.85.em,
    margin: Margin.only(right: 0.1.em, bottom: 0.1.em),
    raw: {'float': 'left'},
  ),
];