copyWith method
Implementation
ChatRevenueTransactionTypeSponsoredMessageEarnings copyWith({
int? startDate,
int? endDate,
}) => ChatRevenueTransactionTypeSponsoredMessageEarnings(
startDate: startDate ?? this.startDate,
endDate: endDate ?? this.endDate,
);