copyWith method
Implementation
StoryAreaPosition copyWith({
double? xPercentage,
double? yPercentage,
double? widthPercentage,
double? heightPercentage,
double? rotationAngle,
double? cornerRadiusPercentage,
}) => StoryAreaPosition(
xPercentage: xPercentage ?? this.xPercentage,
yPercentage: yPercentage ?? this.yPercentage,
widthPercentage: widthPercentage ?? this.widthPercentage,
heightPercentage: heightPercentage ?? this.heightPercentage,
rotationAngle: rotationAngle ?? this.rotationAngle,
cornerRadiusPercentage:
cornerRadiusPercentage ?? this.cornerRadiusPercentage,
);