Meta<T extends Widget> constructor

const Meta<T extends Widget>({
  1. String? name,
  2. Type? component,
  3. String? module,
  4. List<DocumentEntry> documentation = const [],
  5. Map<String, dynamic> parameters = const {},
  6. List<Decorator> decorators = const [],
  7. List<String> tags = const [],
})

Implementation

const Meta({
  String? name,
  Type? component,
  this.module,
  this.documentation = const [],
  this.parameters = const {},
  this.decorators = const [],
  this.tags = const [],
})  : _name = name,
      _component = component;