of static method
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");
}