$ExchangeConfigEnabledExchange.fromJson constructor

$ExchangeConfigEnabledExchange.fromJson(
  1. Map json_
)

Implementation

$ExchangeConfigEnabledExchange.fromJson(core.Map json_)
    : this(
        exchange: json_.containsKey('exchange')
            ? json_['exchange'] as core.String
            : null,
        googleAdManagerAgencyId: json_.containsKey('googleAdManagerAgencyId')
            ? json_['googleAdManagerAgencyId'] as core.String
            : null,
        googleAdManagerBuyerNetworkId:
            json_.containsKey('googleAdManagerBuyerNetworkId')
                ? json_['googleAdManagerBuyerNetworkId'] as core.String
                : null,
        seatId: json_.containsKey('seatId')
            ? json_['seatId'] as core.String
            : null,
      );