VolumeSaleInfoOffersListPrice.fromJson constructor
VolumeSaleInfoOffersListPrice.fromJson(
- Map json_
Implementation
VolumeSaleInfoOffersListPrice.fromJson(core.Map json_)
: this(
amountInMicros: json_.containsKey('amountInMicros')
? (json_['amountInMicros'] as core.num).toDouble()
: null,
currencyCode: json_.containsKey('currencyCode')
? json_['currencyCode'] as core.String
: null,
);