ProductId.fromJson constructor
ProductId.fromJson(
- Map json_
Implementation
ProductId.fromJson(core.Map json_)
: this(
productId: json_.containsKey('productId')
? json_['productId'] as core.String
: null,
);