VTileGroup constructor

const VTileGroup({
  1. Key? key,
  2. required List<Widget> children,
  3. Widget? label,
  4. Widget? description,
  5. bool intrinsicWidth = false,
  6. VTileDivider divider = VTileDivider.indented,
})

Implementation

const VTileGroup({
  super.key,
  required this.children,
  this.label,
  this.description,
  this.intrinsicWidth = false,
  this.divider = VTileDivider.indented,
});