setSourceIndex method
Sets the index position of a filter on a source.
- Complexity Rating: 3/5
- Latest Supported RPC Version: 1
- Added in v5.0.0
Implementation
Future<void> setSourceIndex({
required String sourceName,
required String filterName,
required int filterIndex,
}) async =>
await setSourceFilterIndex(
sourceName: sourceName,
filterName: filterName,
filterIndex: filterIndex,
);