setMediaMetadata method

Future<void> setMediaMetadata(
  1. AVMediaMetadata metadata
)

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);
}