getAppBarTitleColor static method

Color getAppBarTitleColor(
  1. BuildContext context, {
  2. UpStyle? override,
  3. UpStyle? style,
  4. UpColorType? colorType,
})

Implementation

static Color getAppBarTitleColor(
  BuildContext context, {
  UpStyle? override,
  UpStyle? style,
  UpColorType? colorType,
}) {
  return override?.appBarTitleColor ??
      style?.appBarTitleColor ??
      getStyleByType(
        UpConfig.of(context).theme,
        colorType,
      ).appBarTitleColor ??
      Theme.of(context).colorScheme.secondary;
}