accentFill method

Color accentFill([
  1. double pct = 0.12
])

Accent-tinted fill over surface at pct opacity (mirrors the web rgba(74,124,255, N) row highlights).

Implementation

Color accentFill([double pct = 0.12]) => Color.alphaBlend(accent.withOpacity(pct), surface);