copyWith method

WorkspaceBatchCallsResponse copyWith({
  1. List<BatchCallResponse>? batchCalls,
  2. dynamic nextDoc,
  3. 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);
}