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