getCustomTextLabelValue function
Implementation
Widget getCustomTextLabelValue(String label, String value, {String? icon}) {
return Column(
children: [
getCustomTextLabel(label, icon: icon),
getSpaceHeight(.5),
getCustomTextValue(value),
getSpaceHeight(1.5),
],
);
}