getWidget method
Implementation
Widget getWidget({double composWidth=135}) => Row(
children: List.generate(
composition.length, (index) {
var widget = composition[index]
.getWidget(reverse: composition.length==index+1,composWidth: composWidth);
return widget;
}));