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