PairIdInfo.fromJson constructor

PairIdInfo.fromJson(
  1. Map json_
)

Implementation

PairIdInfo.fromJson(core.Map json_)
  : this(
      advertiserIdentifierCount:
          json_['advertiserIdentifierCount'] as core.String?,
      cleanRoomIdentifier: json_['cleanRoomIdentifier'] as core.String?,
      matchRatePercentage: json_['matchRatePercentage'] as core.int?,
      publisherId: json_['publisherId'] as core.String?,
      publisherName: json_['publisherName'] as core.String?,
    );