isValidCall method
- int function,
- Channel sender, [
- Channel receiver = kAnyChannel
inherited
Implementation
bool isValidCall(
int function,
Channel sender, [
Channel receiver = kAnyChannel,
]) {
final rpcFunction = _functions[function];
if (rpcFunction == null) return false;
return rpcFunction.shouldRun(sender, receiver);
}