Component constructor
Component({})
Returns a new Component instance.
Implementation
Component(
{this.children = const [],
this.models = const {},
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);