elementsSmall function

Widget elementsSmall({
  1. required String text,
  2. Color color = AppColor.kSelectItemColor,
  3. TextAlign textAlign = TextAlign.start,
  4. int? maxLines,
})

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,
  );
}