isSupported static method

bool isSupported(
  1. String command
)

Check if a command is supported

Implementation

static bool isSupported(String command) {
  return _deserializers.containsKey(command);
}