TagConsentSetting.fromJson constructor

TagConsentSetting.fromJson(
  1. Map json_
)

Implementation

TagConsentSetting.fromJson(core.Map json_)
  : this(
      consentStatus: json_['consentStatus'] as core.String?,
      consentType:
          json_.containsKey('consentType')
              ? Parameter.fromJson(
                json_['consentType'] as core.Map<core.String, core.dynamic>,
              )
              : null,
    );