GoogleSecuritySafebrowsingV4ClientInfo.fromJson constructor

GoogleSecuritySafebrowsingV4ClientInfo.fromJson(
  1. Map json_
)

Implementation

GoogleSecuritySafebrowsingV4ClientInfo.fromJson(core.Map json_)
    : this(
        clientId: json_.containsKey('clientId')
            ? json_['clientId'] as core.String
            : null,
        clientVersion: json_.containsKey('clientVersion')
            ? json_['clientVersion'] as core.String
            : null,
      );