LfpSale.fromJson constructor
LfpSale.fromJson(
- Map json_
Implementation
LfpSale.fromJson(core.Map json_)
: this(
contentLanguage: json_['contentLanguage'] as core.String?,
feedLabel: json_['feedLabel'] as core.String?,
gtin: json_['gtin'] as core.String?,
name: json_['name'] as core.String?,
offerId: json_['offerId'] as core.String?,
price:
json_.containsKey('price')
? Price.fromJson(
json_['price'] as core.Map<core.String, core.dynamic>,
)
: null,
quantity: json_['quantity'] as core.String?,
regionCode: json_['regionCode'] as core.String?,
saleTime: json_['saleTime'] as core.String?,
storeCode: json_['storeCode'] as core.String?,
targetAccount: json_['targetAccount'] as core.String?,
uid: json_['uid'] as core.String?,
);