styles property

  1. @css
List<StyleRule> styles
final

Implementation

@css
static final List<StyleRule> styles = [
  css('@keyframes pulseGrow').styles(raw: {
    '0%, 100%': 'transform: scale(0.8); opacity: 0.5',
    '50%': 'transform: scale(1.2); opacity: 0.2',
  }),
];