JsonRpcRemoteException constructor

const JsonRpcRemoteException({
  1. required int code,
  2. required String message,
  3. Object? data,
})

Implementation

const JsonRpcRemoteException({
  required this.code,
  required String message,
  this.data,
}) : super(message);