detectCredits method
PUT /library/metadata/{ids}/credits?force={b}&manual={b} —
credits detection.
Implementation
Future<void> detectCredits({
required String ids,
bool force = false,
bool manual = false,
}) async {
await _http.request<void>(
'/library/metadata/$ids/credits',
method: 'PUT',
queryParameters: {
'force': force ? 1 : 0,
'manual': manual ? 1 : 0,
},
);
}