notifyChildrenChanged static method

  1. @Deprecated("Use AudioHandler.subscribeToChildren instead.")
Future<void> notifyChildrenChanged([
  1. String parentMediaId = AudioService.browsableRootId
])

Deprecated. Use AudioHandler.subscribeToChildren instead.

Implementation

@Deprecated("Use AudioHandler.subscribeToChildren instead.")
static Future<void> notifyChildrenChanged(
    [String parentMediaId = AudioService.browsableRootId]) async {
  await _platform.notifyChildrenChanged(
      NotifyChildrenChangedRequest(parentMediaId: parentMediaId));
}