ScriptCallback constructor

ScriptCallback(
  1. String method,
  2. String body,
  3. String error
)

Implementation

ScriptCallback(String method, String body, String error) {
  this.method = method;
  this.body = body;
  this.error = error;
}