getWidget method

Widget getWidget({
  1. double composWidth = 135,
})

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;
    }));