fromJson static method
Implementation
static GiftAuctionState? fromJson(Map<String, dynamic>? json) {
if (json == null) {
return null;
}
return GiftAuctionState(
gift: Gift.fromJson(tdMapFromJson(json['gift'])),
state: AuctionState.fromJson(tdMapFromJson(json['state'])),
);
}