VGroup constructor

VGroup([
  1. List<VMobject>? mobs
])

Implementation

VGroup([List<VMobject>? mobs]) {
  add(mobs ?? []);
}