copyWithWrapped method

Services copyWithWrapped({
  1. Wrapped<Service>? service,
})

Implementation

Services copyWithWrapped({Wrapped<Service>? service}) {
  return Services(service: (service != null ? service.value : this.service));
}