GoogleSecuritySafebrowsingV4ThreatListDescriptor.fromJson constructor

GoogleSecuritySafebrowsingV4ThreatListDescriptor.fromJson(
  1. Map json_
)

Implementation

GoogleSecuritySafebrowsingV4ThreatListDescriptor.fromJson(core.Map json_)
    : this(
        platformType: json_.containsKey('platformType')
            ? json_['platformType'] as core.String
            : null,
        threatEntryType: json_.containsKey('threatEntryType')
            ? json_['threatEntryType'] as core.String
            : null,
        threatType: json_.containsKey('threatType')
            ? json_['threatType'] as core.String
            : null,
      );