fromJson static method
Inherited by: ChatRevenueTransactionTypeFragmentRefund ChatRevenueTransactionTypeFragmentWithdrawal ChatRevenueTransactionTypeSponsoredMessageEarnings ChatRevenueTransactionTypeSuggestedPostEarnings ChatRevenueTransactionTypeUnsupported
Implementation
static ChatRevenueTransactionTypeFragmentRefund? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return ChatRevenueTransactionTypeFragmentRefund(
refundDate: (json['refund_date'] as int?) ?? 0,
);
}