copyWith method
Implementation
UpdateStoryPostFailed copyWith({
Story? story,
TdError? error,
CanPostStoryResult? errorType,
}) => UpdateStoryPostFailed(
story: story ?? this.story,
error: error ?? this.error,
errorType: errorType ?? this.errorType,
);