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