ProductFeedData.fromJson constructor

ProductFeedData.fromJson(
  1. Map json_
)

Implementation

ProductFeedData.fromJson(core.Map json_)
    : this(
        isFeedDisabled: json_['isFeedDisabled'] as core.bool?,
        productMatchDimensions:
            (json_['productMatchDimensions'] as core.List?)
                ?.map((value) => ProductMatchDimension.fromJson(
                    value as core.Map<core.String, core.dynamic>))
                .toList(),
        productMatchType: json_['productMatchType'] as core.String?,
      );