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