RelatedProduct.fromJson constructor

RelatedProduct.fromJson(
  1. Map json_
)

Implementation

RelatedProduct.fromJson(core.Map json_)
  : this(
      id: json_['id'] as core.String?,
      idType: json_['idType'] as core.String?,
      relationshipType: json_['relationshipType'] as core.String?,
    );