JRpcResponse constructor

JRpcResponse(
  1. int id,
  2. String response
)

Implementation

JRpcResponse(int id, String response) : super(id) {
  // ignore: unnecessary_this
  this.result = response;
}