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