fillColor constant

Implementation

static const Map<CWidgetState, Map<CToggleCheckStatus, Color>> fillColor = {
  CWidgetState.enabled: {
    CToggleCheckStatus.checked: CColors.green40,
    CToggleCheckStatus.unchecked: CColors.gray60,
  },
  CWidgetState.disabled: {
    CToggleCheckStatus.checked: CColors.gray90,
    CToggleCheckStatus.unchecked: CColors.gray90,
  },
};