queueLoadItems method
- List<
GoogleCastQueueItem> queueItems, { - GoogleCastQueueLoadOptions? options,
override
Loads queue items on the remote media client.
Implementation
@override
Future<void> queueLoadItems(
List<GoogleCastQueueItem> queueItems, {
GoogleCastQueueLoadOptions? options,
}) async {
await _channel.invokeMethod('queueLoadItems', {
'queueItems': queueItems.map((item) => item.toMap()).toList(),
'options': options?.toMap(android: true),
});
}