getEffectiveTitleTextStyle method

TextStyle getEffectiveTitleTextStyle()

Gets the effective text style for titles

Implementation

TextStyle getEffectiveTitleTextStyle() {
  return titleTextStyle ??
      TextStyle(
        color: titleTextColor ?? Colors.black,
        fontSize: 24,
        fontWeight: FontWeight.bold,
      );
}