copyWith method

StoryArea copyWith({
  1. StoryAreaPosition? position,
  2. StoryAreaType? type,
})

Implementation

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