InternalChecker.fromJson constructor

InternalChecker.fromJson(
  1. Map json_
)

Implementation

InternalChecker.fromJson(core.Map json_)
    : this(
        displayName: json_.containsKey('displayName')
            ? json_['displayName'] as core.String
            : null,
        gcpZone: json_.containsKey('gcpZone')
            ? json_['gcpZone'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
        network: json_.containsKey('network')
            ? json_['network'] as core.String
            : null,
        peerProjectId: json_.containsKey('peerProjectId')
            ? json_['peerProjectId'] as core.String
            : null,
        state:
            json_.containsKey('state') ? json_['state'] as core.String : null,
      );