RPCException constructor

RPCException({
  1. required int errorCode,
  2. required String errorMsg,
  3. required String method,
  4. required List params,
})

Implementation

RPCException({
  required this.errorCode,
  required this.errorMsg,
  required this.method,
  required this.params,
});