VolumeSaleInfoOffersListPrice.fromJson constructor

VolumeSaleInfoOffersListPrice.fromJson(
  1. Map json_
)

Implementation

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