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