makeRpcCall method

Future makeRpcCall(
  1. String method, [
  2. List? params
])

Implementation

Future<dynamic> makeRpcCall(String method, [List<dynamic>? params]) =>
    service.call(method, params);