itemRow method
Implementation
Widget itemRow(data, List<String> fieldList) {
return Row(
children:
List.generate(fieldList.length, (index) => Text(
"${fieldList.elementAt(index)}: data[fieldList.elementAt(index)")
)
);
}