const SmallTextStyle({Color? color, bool? isBold = false}): super( color: color, fontWeight: isBold != null && isBold ? FontWeight.bold : null, fontSize: 14 );