MediaSource constructor

const MediaSource({
  1. String? type,
  2. String? src,
  3. String? srcSet,
  4. String? sizes,
  5. String? media,
  6. String? height,
  7. String? width,
  8. Key? key,
  9. NullableElementCallback? ref,
  10. String? id,
  11. String? title,
  12. String? style,
  13. String? className,
  14. bool? hidden,
  15. String? innerText,
  16. Widget? child,
  17. List<Widget>? children,
  18. EventCallback? onClick,
  19. Map<String, String>? additionalAttributes,
})

Implementation

const MediaSource({
  this.type,
  this.src,
  this.srcSet,
  this.sizes,
  this.media,
  this.height,
  this.width,
  Key? key,
  NullableElementCallback? ref,
  String? id,
  String? title,
  String? style,
  String? className,
  bool? hidden,
  String? innerText,
  Widget? child,
  List<Widget>? children,
  EventCallback? onClick,
  Map<String, String>? additionalAttributes,
}) : super(
        key: key,
        ref: ref,
        id: id,
        title: title,
        style: style,
        className: className,
        hidden: hidden,
        innerText: innerText,
        child: child,
        children: children,
        onClick: onClick,
        additionalAttributes: additionalAttributes,
      );