load method
Implementation
Future<void> load(
String url,
{
String? title,
String? subtitle,
Map<String, String> headers = const {},
}) async {
final id = await ImpulsePlayerFactory.getViewId(this);
return ImpulsePlayerPluginPlatform.instance.load(id, url, title, subtitle, headers);
}