toJson method

  1. @override
Map<String, dynamic> toJson()
override

Implementation

@override
Map<String, dynamic> toJson() => <String, dynamic>{
  'creator_id': creatorId?.toJson(),
  'text': text?.toJson(),
  'is_from_giveaway': isFromGiveaway,
  'is_unclaimed': isUnclaimed,
  'currency': currency,
  'amount': amount,
  'cryptocurrency': cryptocurrency,
  'cryptocurrency_amount': cryptocurrencyAmount.toString(),
  'month_count': monthCount,
  'day_count': dayCount,
  'sticker': sticker?.toJson(),
  'code': code,
  '@type': constructor,
};