JSONRPCResponse constructor

JSONRPCResponse(
  1. dynamic result,
  2. JSONRPCError? error, [
  3. dynamic id,
  4. String jsonrpc = "2.0",
])

Implementation

JSONRPCResponse(this.result, this.error, [dynamic id, String jsonrpc = "2.0"]) : super(id, jsonrpc);