PendingRequestResponse constructor
      
      PendingRequestResponse({ 
    
    
- required Completer completer,
- required String method,
- dynamic response,
- JsonRpcError? error,
Implementation
PendingRequestResponse({
  required this.completer,
  required this.method,
  this.response,
  this.error,
});