copyWith method
Implementation
MaxThreadsPerThreadgroup copyWith({
int? width,
int? height,
int? depth,
}) {
return MaxThreadsPerThreadgroup(
width: width ?? this.width,
height: height ?? this.height,
depth: depth ?? this.depth,
);
}