Video constructor
const
Video({
- bool? autoPlay,
- bool? controls,
- CrossOriginType? crossOrigin,
- String? height,
- bool? loop,
- bool? muted,
- bool? playsInline,
- String? poster,
- PreloadType? preload,
- String? src,
- String? width,
- Key? key,
- NullableElementCallback? ref,
- String? id,
- String? title,
- String? style,
- String? className,
- String? innerText,
- Widget? child,
- List<
Widget> ? children, - EventCallback? onClick,
- Map<
String, String> ? additionalAttributes,
Implementation
const Video({
this.autoPlay,
this.controls,
this.crossOrigin,
this.height,
this.loop,
this.muted,
this.playsInline,
this.poster,
this.preload,
this.src,
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,
);