emphasizedBorder static method

Color emphasizedBorder(
  1. ColorScheme colorScheme, {
  2. required bool subtle,
})

Implementation

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