ProductMatchDimension.fromJson constructor
ProductMatchDimension.fromJson(
- 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_['productOfferId'] as core.String?,
);