copyWith method
GetStarTransactions
copyWith({
- MessageSender? ownerId,
- String? subscriptionId,
- TransactionDirection? direction,
- String? offset,
- int? limit,
Implementation
GetStarTransactions copyWith({
MessageSender? ownerId,
String? subscriptionId,
TransactionDirection? direction,
String? offset,
int? limit,
}) => GetStarTransactions(
ownerId: ownerId ?? this.ownerId,
subscriptionId: subscriptionId ?? this.subscriptionId,
direction: direction ?? this.direction,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);