copyWith method

GetTonTransactions copyWith({
  1. TransactionDirection? direction,
  2. String? offset,
  3. int? limit,
})

Implementation

GetTonTransactions copyWith({
  TransactionDirection? direction,
  String? offset,
  int? limit,
}) => GetTonTransactions(
  direction: direction ?? this.direction,
  offset: offset ?? this.offset,
  limit: limit ?? this.limit,
);