copyWith method
WorkspaceBatchCallsResponse
copyWith({
- List<
BatchCallResponse> ? batchCalls, - dynamic nextDoc,
- bool? hasMore,
Implementation
WorkspaceBatchCallsResponse copyWith(
{List<BatchCallResponse>? batchCalls, dynamic nextDoc, bool? hasMore}) {
return WorkspaceBatchCallsResponse(
batchCalls: batchCalls ?? this.batchCalls,
nextDoc: nextDoc ?? this.nextDoc,
hasMore: hasMore ?? this.hasMore);
}