copyWithWrapped method

ShutterAngle$Response copyWithWrapped({
  1. Wrapped<double?>? shutterAngle,
})

Implementation

ShutterAngle$Response copyWithWrapped({Wrapped<double?>? shutterAngle}) {
  return ShutterAngle$Response(
      shutterAngle:
          (shutterAngle != null ? shutterAngle.value : this.shutterAngle));
}