generateRow method

dynamic generateRow(
  1. List<Widget> rowChildren
)

Implementation

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