Group constructor

const Group({
  1. Key? key,
  2. required Widget child,
  3. Offset? translate,
  4. double? rotation,
  5. double? scale,
  6. Offset? scaleXY,
  7. Matrix4? transform,
  8. bool clip = false,
  9. Rect? clipRect,
  10. Path? clipPath,
  11. Clip clipBehavior = Clip.antiAlias,
  12. double? opacity,
})

Creates a group widget.

Implementation

const Group({
  super.key,
  required this.child,
  this.translate,
  this.rotation,
  this.scale,
  this.scaleXY,
  this.transform,
  this.clip = false,
  this.clipRect,
  this.clipPath,
  this.clipBehavior = Clip.antiAlias,
  this.opacity,
});