jsonRpcMethod property

JsonRpcMethod? jsonRpcMethod

Implementation

JsonRpcMethod? get jsonRpcMethod {
  try {
    return _jsonRpcMethodMap.entries
        .where((element) => element.value == this)
        .first
        .key;
  } catch (e) {
    return null;
  }
}