iframe static method

WebPlayerSource iframe(
  1. String url, {
  2. String? poster,
  3. bool? autoPlay,
})

Implementation

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