copyWith method
ChatRevenueTransactions
copyWith({
- int? gramAmount,
- List<
ChatRevenueTransaction> ? transactions, - String? nextOffset,
Implementation
ChatRevenueTransactions copyWith({
int? gramAmount,
List<ChatRevenueTransaction>? transactions,
String? nextOffset,
}) => ChatRevenueTransactions(
gramAmount: gramAmount ?? this.gramAmount,
transactions: transactions ?? this.transactions,
nextOffset: nextOffset ?? this.nextOffset,
);