OrderItemAttributes.map constructor

OrderItemAttributes.map(
  1. 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'],
  );
}