copyWithWrapped method

ShutterSpeed$Response copyWithWrapped({
  1. Wrapped<double?>? shutterSpeed,
})

Implementation

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