Component constructor

Component({
  1. String? name,
  2. String? componentId,
  3. String? key,
  4. List<Attribute>? attributes,
  5. List<Component>? children,
  6. bool? hasNavigation,
})

Implementation

Component(
    {this.name,
    this.componentId,
    this.key,
    this.attributes,
    this.children,
    this.hasNavigation});