GoldenBuilder.column constructor

GoldenBuilder.column({
  1. Color? bgColor,
  2. WidgetWrapper? wrap,
})

Will output a .png file with a column layout in 'tests/goldens' folder.

wrap (optional) will wrap the scenario's widget in the tree.

bgColor will change the background color of output .png file

Implementation

factory GoldenBuilder.column({
  Color? bgColor,
  WidgetWrapper? wrap,
}) {
  return GoldenBuilder._(
    wrap: wrap,
    bgColor: bgColor,
  );
}