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