withUrl static method
Implementation
static WebPlayerSource withUrl(
String url, {
String? poster,
bool? autoPlay,
}) {
return WebPlayerSource._(
url: url,
poster: poster,
type: WebPlayerSourceType.iframe,
autoPlay: autoPlay,
customControlsBuilder: null);
}