WaitForCondition.deserialize constructor

WaitForCondition.deserialize(
  1. Map<String, String> json, {
  2. String? path,
})

Deserializes this command from the value generated by serialize.

The path is the current path to the json object from the parent object.

Implementation

WaitForCondition.deserialize(super.json, {String? path})
  : condition = _deserialize(json, path: path),
    super.deserialize();