copyWithWrapped method

OperationsResponse$Response copyWithWrapped({
  1. Wrapped<List<OperationsInfo>>? operations,
})

Implementation

OperationsResponse$Response copyWithWrapped(
    {Wrapped<List<OperationsInfo>>? operations}) {
  return OperationsResponse$Response(
      operations: (operations != null ? operations.value : this.operations));
}