copyWith method

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

Implementation

OperationsResponse$Response copyWith({List<OperationsInfo>? operations}) {
  return OperationsResponse$Response(
      operations: operations ?? this.operations);
}