fromJson static method
Inherited by: GiftResaleResultOk GiftResaleResultPriceIncreased
Implementation
static GiftResaleResultPriceIncreased? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return GiftResaleResultPriceIncreased(
price: GiftResalePrice.fromJson(tdMapFromJson(json['price'])),
);
}