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