DrawableGroup constructor

const DrawableGroup(
  1. String? id,
  2. List<Drawable>? children,
  3. DrawableStyle? style, {
  4. Float64List? transform,
  5. Color? color,
})

Creates a new DrawableGroup.

Implementation

const DrawableGroup(
  this.id,
  this.children,
  this.style, {
  this.transform,
  this.color,
});