InternalChecker.fromJson constructor

InternalChecker.fromJson(
  1. Map json_
)

Implementation

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