copyWith method

DeleteBusinessStory copyWith({
  1. String? businessConnectionId,
  2. int? storyId,
})

Implementation

DeleteBusinessStory copyWith({String? businessConnectionId, int? storyId}) =>
    DeleteBusinessStory(
      businessConnectionId: businessConnectionId ?? this.businessConnectionId,
      storyId: storyId ?? this.storyId,
    );