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