Widget buildRequiredErrorText(String message) { return Text( textAlign: TextAlign.left, message, style: CustomTextTheme.custom( 13, CustomColor.customErrorColor(), FontWeight.w500), ); }

Widget buildListTile(BuildContext context, String iconPath, String title, String identifier) {
return ListTile(
  leading: SvgPicture.asset(iconPath, width: 24, height: 24),
  title: textBuilder(
    title,
    CustomTextTheme.body(14.0, FontWeight.normal),
    TextAlign.left,
  ),
  onTap: () => onTapFunction(context, identifier),
);

}

new line