copyWithWrapped method

Shutdown$Response copyWithWrapped({
  1. Wrapped<String?>? shutdown,
})

Implementation

Shutdown$Response copyWithWrapped({Wrapped<String?>? shutdown}) {
  return Shutdown$Response(
      shutdown: (shutdown != null ? shutdown.value : this.shutdown));
}