of static method

MediaController? of(
  1. Component media
)

Implementation

static MediaController? of(Component media) {
  if (media is Media) {
    return MediaController(media: media.element as HTMLMediaElement);
  }

  throw Exception("Media controller can't be attached to this component");
}