toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() => {
if (availableImpressions != null)
'availableImpressions': availableImpressions!.toJson(),
if (bidRequests != null) 'bidRequests': bidRequests!.toJson(),
if (inventoryMatches != null)
'inventoryMatches': inventoryMatches!.toJson(),
if (responsesWithBids != null)
'responsesWithBids': responsesWithBids!.toJson(),
if (rowDimensions != null) 'rowDimensions': rowDimensions!.toJson(),
if (successfulResponses != null)
'successfulResponses': successfulResponses!.toJson(),
};