copyWithWrapped method

Orientation$Response copyWithWrapped({
  1. Wrapped<String?>? orientation,
})

Implementation

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