$AdvertiserCreativeConfig.fromJson constructor

$AdvertiserCreativeConfig.fromJson(
  1. Map json_
)

Implementation

$AdvertiserCreativeConfig.fromJson(core.Map json_)
    : this(
        dynamicCreativeEnabled: json_.containsKey('dynamicCreativeEnabled')
            ? json_['dynamicCreativeEnabled'] as core.bool
            : null,
        iasClientId: json_.containsKey('iasClientId')
            ? json_['iasClientId'] as core.String
            : null,
        obaComplianceDisabled: json_.containsKey('obaComplianceDisabled')
            ? json_['obaComplianceDisabled'] as core.bool
            : null,
        videoCreativeDataSharingAuthorized:
            json_.containsKey('videoCreativeDataSharingAuthorized')
                ? json_['videoCreativeDataSharingAuthorized'] as core.bool
                : null,
      );