SupplementalProductDataSource.fromJson constructor

SupplementalProductDataSource.fromJson(
  1. Map json_
)

Implementation

SupplementalProductDataSource.fromJson(core.Map json_)
  : this(
      contentLanguage: json_['contentLanguage'] as core.String?,
      feedLabel: json_['feedLabel'] as core.String?,
      referencingPrimaryDataSources:
          (json_['referencingPrimaryDataSources'] as core.List?)
              ?.map(
                (value) => DataSourceReference.fromJson(
                  value as core.Map<core.String, core.dynamic>,
                ),
              )
              .toList(),
    );