getCustomTextLabelValue function

Widget getCustomTextLabelValue(
  1. String label,
  2. String value, {
  3. String? icon,
})

Implementation

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