sendCommand method

Future<bool> sendCommand(
  1. dynamic delay,
  2. String? channel,
  3. dynamic command,
  4. bool fn(),
)

Implementation

Future<bool> sendCommand(
    delay, String? channel, command, bool Function() fn) async {
  return _sendCommand(delay, channel, command, fn);
}