Bidder.fromJson constructor

Bidder.fromJson(
  1. Map json_
)

Implementation

Bidder.fromJson(core.Map json_)
    : this(
        bypassNonguaranteedDealsPretargeting:
            json_.containsKey('bypassNonguaranteedDealsPretargeting')
                ? json_['bypassNonguaranteedDealsPretargeting'] as core.bool
                : null,
        cookieMatchingNetworkId: json_.containsKey('cookieMatchingNetworkId')
            ? json_['cookieMatchingNetworkId'] as core.String
            : null,
        cookieMatchingUrl: json_.containsKey('cookieMatchingUrl')
            ? json_['cookieMatchingUrl'] as core.String
            : null,
        dealsBillingId: json_.containsKey('dealsBillingId')
            ? json_['dealsBillingId'] as core.String
            : null,
        name: json_.containsKey('name') ? json_['name'] as core.String : null,
      );