copyWithWrapped method

BitDepth$Response copyWithWrapped({
  1. Wrapped<int?>? bitDepth,
})

Implementation

BitDepth$Response copyWithWrapped({Wrapped<int?>? bitDepth}) {
  return BitDepth$Response(
      bitDepth: (bitDepth != null ? bitDepth.value : this.bitDepth));
}