$MeasurementConfig.fromJson constructor

$MeasurementConfig.fromJson(
  1. Map json_
)

Implementation

$MeasurementConfig.fromJson(core.Map json_)
    : this(
        dv360ToCmCostReportingEnabled:
            json_.containsKey('dv360ToCmCostReportingEnabled')
                ? json_['dv360ToCmCostReportingEnabled'] as core.bool
                : null,
        dv360ToCmDataSharingEnabled:
            json_.containsKey('dv360ToCmDataSharingEnabled')
                ? json_['dv360ToCmDataSharingEnabled'] as core.bool
                : null,
      );