blockquote constructor

const blockquote(
  1. List<Component> children, {
  2. String? cite,
  3. String? id,
  4. String? classes,
  5. Styles? styles,
  6. Map<String, String>? attributes,
  7. Map<String, EventCallback>? events,
  8. Key? key,
})

The <blockquote> HTML element indicates that the enclosed text is an extended quotation. Usually, this is rendered visually by indentation. A URL for the source of the quotation may be given using the cite attribute, while a text representation of the source can be given using the <cite> element.

Implementation

const blockquote(
  this.children, {
  this.cite,
  this.id,
  this.classes,
  this.styles,
  this.attributes,
  this.events,
  super.key,
});