emphasizedBorder static method
Implementation
static Color emphasizedBorder(
ColorScheme colorScheme, {
required bool subtle,
}) {
return subtle
? colorScheme.outlineVariant.withValues(alpha: 0.45)
: colorScheme.primary.withValues(alpha: 0.22);
}