setMediaMetadata method
Sets metadata for the media notification / lock screen display.
Implementation
Future<void> setMediaMetadata(AVMediaMetadata metadata) async {
final id = _playerId;
if (id == null) return;
await _platform.setMediaMetadata(id, metadata);
}