OrderItemAttributes.map constructor
OrderItemAttributes.map(
- Map obj
Implementation
factory OrderItemAttributes.map(Map obj) {
return OrderItemAttributes(
attributeCode: obj['attributeCode'],
attributeName: obj['attributeName'],
attributeValue: obj['attributeValue'],
optionCode: obj['optionCode'],
optionName: obj['optionName'],
);
}