queryCommandSupported method

bool? queryCommandSupported(
  1. String commandId
)

Query command supported.

Returns true if the command is supported.

Implementation

bool? queryCommandSupported(String commandId) {
  if (!_ready) throw AlohaException(AlohaException.notReady);
  return _alohaContext.callMethod('queryCommandSupported', [commandId]);
}