copyWith method
Implementation
ToggleStoryIsPinned copyWith({
int? storyId,
bool? isPinned,
}) =>
ToggleStoryIsPinned(
storyId: storyId ?? this.storyId,
isPinned: isPinned ?? this.isPinned,
);
ToggleStoryIsPinned copyWith({
int? storyId,
bool? isPinned,
}) =>
ToggleStoryIsPinned(
storyId: storyId ?? this.storyId,
isPinned: isPinned ?? this.isPinned,
);