copyWithWrapped method

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

Implementation

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