thumbColor property Null safety
final
        The color of this Switch's thumb.
Resolved in the following states:
This example resolves the thumbColor based on the current
MaterialState of the Switch, providing a different 
    Color when it is
MaterialState.disabled.
Switch(
  value: true,
  onChanged: (_) => true,
  thumbColor: MaterialStateProperty.resolveWith<Color>((Set<MaterialState> states) {
    if (states.contains(MaterialState.disabled)) {
      return Colors.orange.withOpacity(.48);
    }
    return Colors.orange;
  }),
)If specified, overrides the default value of Switch.thumbColor.
Implementation
final MaterialStateProperty<Color?>? thumbColor;