generateRow method
Implementation
generateRow(List<Widget> rowChildren){
return Row(
children:rowChildren.toList(),
crossAxisAlignment:crossAxisAlignment,
mainAxisAlignment:mainAxisAlignment,
mainAxisSize:mainAxisSize,
textBaseline:textBaseline,
textDirection:textDirection,
verticalDirection:verticalDirection
);
}