activeColor property

Color? activeColor
final

The active Color of the TypeSelector. Is displayed when an option is selected. The default value is:

Theme.of(context).accentColor;

Example of usage:

TypeSelector(
  activeColor: Colors.amber,
  // other properties
);

Implementation

final Color? activeColor;