fromJson static method
Inherited by: ChatRevenueTransactionTypeFragmentRefund ChatRevenueTransactionTypeFragmentWithdrawal ChatRevenueTransactionTypeSponsoredMessageEarnings ChatRevenueTransactionTypeSuggestedPostEarnings ChatRevenueTransactionTypeUnsupported
Implementation
static ChatRevenueTransactionTypeUnsupported? fromJson(
Map<String, dynamic>? json,
) {
if (json == null) {
return null;
}
return const ChatRevenueTransactionTypeUnsupported();
}