VolumeSaleInfoListPrice.fromJson constructor

VolumeSaleInfoListPrice.fromJson(
  1. Map json_
)

Implementation

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