JsEvalResult constructor

JsEvalResult(
  1. String stringResult,
  2. dynamic rawResult,
  3. {bool isError = false,
  4. bool isPromise = false}
)

Implementation

JsEvalResult(this.stringResult, this.rawResult,
    {this.isError = false, this.isPromise = false});