webFormUnitContent function
Implementation
webFormUnitContent(BuildContext context, String title, String value) {
return Row(
children: [
buildHeaderBold(context, '${title} :', softWrap: true),
buildSizeWidth(5),
AppText(
value,
style: TextStyles.normal(context),
softWrap: true,
)
],
);
}