PixelGroup constructor
const
PixelGroup({
- required String title,
- required List<
PixelPreview> children,
Creates a new PixelGroup.
The title parameter is required and will be displayed as the group header.
The children parameter should contain the widgets to display in this group,
typically PixelPreview widgets.
Implementation
const PixelGroup({
required this.title,
required this.children,
});