$Precondition.fromJson constructor
$Precondition.fromJson(
- Map _json
Implementation
$Precondition.fromJson(core.Map _json)
: this(
exists:
_json.containsKey('exists') ? _json['exists'] as core.bool : null,
updateTime: _json.containsKey('updateTime')
? _json['updateTime'] as core.String
: null,
);