elementsSmall function
Implementation
Widget elementsSmall({
required String text,
Color color = AppColor.kSelectItemColor,
TextAlign textAlign = TextAlign.start,
int? maxLines,
}) {
return customText(
text: text,
color: color,
textAlign: textAlign,
maxLines: maxLines,
fontSize: 14,
fontWeight: FontWeight.w500,
);
}