PendingRequestResponse constructor

PendingRequestResponse({
  1. required Completer completer,
  2. required String method,
  3. dynamic response,
  4. JsonRpcError? error,
})

Implementation

PendingRequestResponse({
  required this.completer,
  required this.method,
  this.response,
  this.error,
});