renderRowData method
Implementation
Widget renderRowData(String title, String value) {
return SelectableText.rich(
TextSpan(
children: [
TextSpan(
text: '$title: ',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 14,
color: Colors.black,
),
),
TextSpan(
text: value,
style: TextStyle(
fontSize: 14,
color: Colors.black,
),
),
],
),
);
}