GroupMaterial constructor

GroupMaterial([
  1. List<Material>? children
])

Implementation

GroupMaterial([List<Material>? children]) : super() {
  this.children = children ?? [];
  type = "GroupMaterial";
}