iframe static method
Implementation
static WebPlayerSource iframe(
String url, {
String? poster,
bool? autoPlay,
}) {
return WebPlayerSource._(
poster: poster,
autoPlay: autoPlay,
src: url,
type: WebPlayerVideoSourceType.iframe.typeText);
}