mediaChanged method

void mediaChanged(
  1. String videoUrl,
  2. String title,
  3. String subtitle,
  4. String artworkUrl,
  5. bool autoPlay,
  6. double volume,
)

Implementation

void mediaChanged(String videoUrl, String title, String subtitle, String artworkUrl, bool autoPlay, double volume) {
  methodChannel.invokeMethod("mediaChanged", {
    "url": videoUrl,
    "title": title,
    "subtitle": subtitle,
    "artworkUrl": artworkUrl,
    "autoPlay": autoPlay,
    "volume": volume
  });
}