ProductDetail.fromJson constructor
ProductDetail.fromJson(
- Map json_
Implementation
ProductDetail.fromJson(core.Map json_)
: this(
attributeName: json_.containsKey('attributeName')
? json_['attributeName'] as core.String
: null,
attributeValue: json_.containsKey('attributeValue')
? json_['attributeValue'] as core.String
: null,
sectionName: json_.containsKey('sectionName')
? json_['sectionName'] as core.String
: null,
);