AbstractComponent constructor

AbstractComponent({
  1. String? id,
  2. String? label,
  3. String? name,
  4. Map<String, Link?> links = const {},
  5. ComponentMeta? meta,
  6. 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);