LinkComponent constructor

const LinkComponent({
  1. required String url,
  2. String? text,
  3. String? id,
  4. bool styled = false,
  5. RenderConfig renderConfig = const RenderConfig(),
})

Implementation

const LinkComponent({
  required this.url,
  this.text,
  this.id,
  this.styled = false,
  this.renderConfig = const RenderConfig(),
});