$Price.fromJson constructor

$Price.fromJson(
  1. Map json_
)

Implementation

$Price.fromJson(core.Map json_)
  : this(
      amountMicros: json_['amountMicros'] as core.String?,
      currencyCode: json_['currencyCode'] as core.String?,
    );