checkedInputColor static method

Color checkedInputColor(
  1. FluentThemeData theme,
  2. Set<ButtonStates> states
)

Defines the default color used for inputs when checked, such as checkbox, radio button and toggle switch. It's based on the current style and the current state.

Implementation

static Color checkedInputColor(
    FluentThemeData theme, Set<ButtonStates> states) {
  return FilledButton.backgroundColor(theme, states);
}