copyWith method
TransactionsSyncResponse
copyWith({
- List<
Transaction> ? added, - List<
Transaction> ? modified, - List<
RemovedTransaction> ? removed, - String? nextCursor,
- bool? hasMore,
- String? requestId,
Implementation
TransactionsSyncResponse copyWith(
{List<Transaction>? added,
List<Transaction>? modified,
List<RemovedTransaction>? removed,
String? nextCursor,
bool? hasMore,
String? requestId}) {
return TransactionsSyncResponse(
added: added ?? this.added,
modified: modified ?? this.modified,
removed: removed ?? this.removed,
nextCursor: nextCursor ?? this.nextCursor,
hasMore: hasMore ?? this.hasMore,
requestId: requestId ?? this.requestId);
}