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