solveBulk abstract method
Future<Map<String, String?> >
solveBulk(
- String playerUrl,
- Map<
JSChallengeType, List< requestsString> >
Solves JavaScript challenges in bulk.
The requests parameter is a map where the key is the type of challenge
and the value is a list of challenge strings to be solved.
Returns a map where each challenge string maps to its solved result or null if unsolved.
Implementation
Future<Map<String, String?>> solveBulk(
String playerUrl, Map<JSChallengeType, List<String>> requests);