copyWith method

InputStoryArea copyWith({
  1. StoryAreaPosition? position,
  2. InputStoryAreaType? type,
})

Implementation

InputStoryArea copyWith({
  StoryAreaPosition? position,
  InputStoryAreaType? type,
}) => InputStoryArea(
  position: position ?? this.position,
  type: type ?? this.type,
);