$Precondition.fromJson constructor

$Precondition.fromJson(
  1. 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,
      );