DenoEJSSolver class
- Inheritance
-
- Object
- BaseJSChallengeSolver
- BaseEJSSolver
- DenoEJSSolver
Properties
- hashCode → int
-
The hash code for this object.
no setterinherited
- runtimeType → Type
-
A representation of the runtime type of the object.
no setterinherited
Methods
-
dispose(
) → void -
override
-
executeJavaScript(
String jsCode) → Future< String> -
Executes JavaScript code and returns the JSON string result.
override
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
solve(
String playerUrl, JSChallengeType type, String challenge) → Future< String> -
Solves a single JavaScript challenge of the specified
type. Returns the solved challenge as a string.inherited -
solveBulk(
String playerUrl, Map< JSChallengeType, List< requests) → Future<String> >Map< String, String?> > -
Solves JavaScript challenges in bulk.
The
requestsparameter is a map where the key is the type of challenge and the value is a list of challenge strings to be solved.inherited -
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited
Static Methods
-
init(
{String? denoExe}) → Future< DenoEJSSolver>