$ProductDetail.fromJson constructor

$ProductDetail.fromJson(
  1. Map json_
)

Implementation

$ProductDetail.fromJson(core.Map json_)
  : this(
      attributeName: json_['attributeName'] as core.String?,
      attributeValue: json_['attributeValue'] as core.String?,
      sectionName: json_['sectionName'] as core.String?,
    );