copyWith method

GetStarTransactions copyWith({
  1. MessageSender? ownerId,
  2. String? subscriptionId,
  3. TransactionDirection? direction,
  4. String? offset,
  5. 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,
);