customListTileUnderSubtitleLeftColor static method

dynamic customListTileUnderSubtitleLeftColor(
  1. Color? color,
  2. bool? fontWeightBold
)

Implementation

static customListTileUnderSubtitleLeftColor(
        Color? color, bool? fontWeightBold) =>
    TextStyle(
        color: color ?? Styles.primaryColor,
        fontSize: fontSizesCaption,
        fontWeight:
            fontWeightBold != null ? FontWeight.bold : FontWeight.normal,
        fontFamily: primaryFont);