ReactComponentMetadata constructor

const ReactComponentMetadata({
  1. required String name,
  2. String? description,
  3. String? propsType,
  4. bool supportsRef = false,
  5. bool isForeign = false,
})

Creates metadata for a component.

Implementation

const ReactComponentMetadata({
  required this.name,
  this.description,
  this.propsType,
  this.supportsRef = false,
  this.isForeign = false,
});