solveBulk abstract method

Future<Map<String, String?>> solveBulk(
  1. String playerUrl,
  2. Map<JSChallengeType, List<String>> requests
)

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);