copyWith method

BitDepth$Response copyWith({
  1. int? bitDepth,
})

Implementation

BitDepth$Response copyWith({int? bitDepth}) {
  return BitDepth$Response(bitDepth: bitDepth ?? this.bitDepth);
}