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,
);