copyWith method

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

Implementation

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