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