copyWith method

ChatRevenueTransactions copyWith({
  1. int? gramAmount,
  2. List<ChatRevenueTransaction>? transactions,
  3. 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,
);