sectionBar static method

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

Implementation

static Color sectionBar(ColorScheme colorScheme, {required bool subtle}) {
  return subtle ? colorScheme.outlineVariant : colorScheme.primary;
}