copyWith method

TonTransactions copyWith({
  1. int? gramAmount,
  2. List<TonTransaction>? transactions,
  3. String? nextOffset,
})

Implementation

TonTransactions copyWith({
  int? gramAmount,
  List<TonTransaction>? transactions,
  String? nextOffset,
}) => TonTransactions(
  gramAmount: gramAmount ?? this.gramAmount,
  transactions: transactions ?? this.transactions,
  nextOffset: nextOffset ?? this.nextOffset,
);