widget property
Expose the widget for the golden builder files.
Implementation
Widget get widget => Container(
color: Colors.white,
padding: EdgeInsets.all(_padding),
child: Column(
mainAxisSize: MainAxisSize.min,
children: _scenarios
.mapGrouped(
_mapScenariosToRow,
n: nrColumns,
)
.toList(),
),
);