getEffectiveBodyTextStyle method

TextStyle getEffectiveBodyTextStyle()

Gets the effective text style for body text

Implementation

TextStyle getEffectiveBodyTextStyle() {
  return bodyTextStyle ??
      TextStyle(
        color: bodyTextColor ?? const Color(0xFF424242),
        fontSize: 16,
        height: 1.4,
      );
}