BlockQuote constructor

const BlockQuote({
  1. Key? key,
  2. String? cite,
  3. bool? hidden,
  4. bool? draggable,
  5. bool? contentEditable,
  6. int? tabIndex,
  7. String? id,
  8. String? title,
  9. String? style,
  10. String? classAttribute,
  11. String? onClickAttribute,
  12. String? innerText,
  13. List<Widget>? children,
  14. EventCallback? onClick,
  15. Map<String, String>? additionalAttributes,
})

Implementation

const BlockQuote({
  Key? key,
  this.cite,
  bool? hidden,
  bool? draggable,
  bool? contentEditable,
  int? tabIndex,
  String? id,
  String? title,
  String? style,
  String? classAttribute,
  String? onClickAttribute,
  String? innerText,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        id: id,
        title: title,
        tabIndex: tabIndex,
        draggable: draggable,
        hidden: hidden,
        style: style,
        classAttribute: classAttribute,
        contentEditable: contentEditable,
        onClickAttribute: onClickAttribute,
        innerText: innerText,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );