WaitForCondition.deserialize constructor Null safety

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

Deserializes this command from the value generated by serialize.

The json argument cannot be null.

Implementation

WaitForCondition.deserialize(super.json)
    : assert(json != null),
      condition = _deserialize(json),
      super.deserialize();