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