fromJson static method

GiftResaleResultPriceIncreased? fromJson(
  1. Map<String, dynamic>? json
)
override

Implementation

static GiftResaleResultPriceIncreased? fromJson(Map<String, dynamic>? json) {
  if (json == null) {
    return null;
  }

  return GiftResaleResultPriceIncreased(
    price: GiftResalePrice.fromJson(tdMapFromJson(json['price'])),
  );
}