Command.deserialize constructor

Command.deserialize(
  1. Map<String, String> json
)

Deserializes this command from the value generated by serialize.

Implementation

Command.deserialize(Map<String, String> json)
  : timeout = _parseTimeout(json);