getDatePickerOnPrimaryColor static method
Color
getDatePickerOnPrimaryColor(
- BuildContext context, {
- UpStyle? override,
- UpStyle? style,
- UpColorType? colorType,
Implementation
static Color getDatePickerOnPrimaryColor(
BuildContext context, {
UpStyle? override,
UpStyle? style,
UpColorType? colorType,
}) {
return override?.datePickerOnPrimaryColor ??
style?.datePickerOnPrimaryColor ??
getStyleByType(
UpConfig.of(context).theme,
colorType,
).datePickerOnPrimaryColor ??
Theme.of(context).colorScheme.primary;
}