copyWith method
Implementation
VideoStoryboard copyWith({
File? storyboardFile,
int? width,
int? height,
File? mapFile,
}) => VideoStoryboard(
storyboardFile: storyboardFile ?? this.storyboardFile,
width: width ?? this.width,
height: height ?? this.height,
mapFile: mapFile ?? this.mapFile,
);