CardTitle constructor

const CardTitle(
  1. List<Component>? children, {
  2. String tag = 'h2',
  3. List<Styling>? style,
  4. String? id,
  5. String? classes,
  6. Styles? css,
  7. Map<String, String>? attributes,
  8. Map<String, List<UiEventHandler>>? eventHandlers,
  9. Component? child,
  10. Key? key,
})

Creates a CardTitle component. Its id can be used by the parent Card's aria-labelledby attribute. modifiers can include general utilities like Typography.

Implementation

const CardTitle(
  super.children, {
  super.tag = 'h2',
  super.style,
  super.id,
  super.classes,
  super.css,
  super.attributes,
  super.eventHandlers,
  super.child,
  super.key,
});