setPlaybackSessionExpectedNumberOfItems method
Expected total number of assets in playback session (count of individual assets).
@param expectedNumberOfItems Expected number of items
Implementation
Future<void> setPlaybackSessionExpectedNumberOfItems(int expectedNumberOfItems) {
var args = buildArguments();
args["expectedNumberOfItems"] = expectedNumberOfItems;
return _methodChannel.invokeMethod<void>('setPlaybackSessionExpectedNumberOfItems', args);
}