customListTileUnderSubtitleRightColor static method

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

Implementation

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