GroupElement constructor

GroupElement({
  1. required List<MarkElement<ElementStyle>> elements,
  2. double? rotation,
  3. Offset? rotationAxis,
  4. String? tag,
})

Creates a group element.

Implementation

GroupElement({
  required this.elements,
  double? rotation,
  Offset? rotationAxis,
  String? tag,
}) : super(
        style: _groupStyle,
        rotation: rotation,
        rotationAxis: rotationAxis,
        tag: tag,
      );