ProductMatchDimension.fromJson constructor

ProductMatchDimension.fromJson(
  1. Map json_
)

Implementation

ProductMatchDimension.fromJson(core.Map json_)
    : this(
        customLabel: json_.containsKey('customLabel')
            ? CustomLabel.fromJson(
                json_['customLabel'] as core.Map<core.String, core.dynamic>)
            : null,
        productOfferId: json_.containsKey('productOfferId')
            ? json_['productOfferId'] as core.String
            : null,
      );