detailRow function
Implementation
Widget detailRow(String label, String value) {
return Row(
children: [
Text(
'$label: ',
style: const TextStyle(color: Colors.white38, fontSize: 11),
),
Text(value, style: const TextStyle(color: Colors.white70, fontSize: 11)),
],
);
}