Container constructor
Container({})
Returns a new Container instance.
Implementation
Container(
{this.children = const [],
this.xtype,
String? id,
String? label,
String? name,
Map<String, Link?> links = const {},
ComponentMeta? meta,
required ElementTypeEnum? type})
: super(
type: type,
links: links,
meta: meta,
id: id,
label: label,
name: name);