copyWith method
Implementation
GetStoryInteractions copyWith({
int? storyId,
String? query,
bool? onlyContacts,
bool? preferForwards,
bool? preferWithReaction,
String? offset,
int? limit,
}) => GetStoryInteractions(
storyId: storyId ?? this.storyId,
query: query ?? this.query,
onlyContacts: onlyContacts ?? this.onlyContacts,
preferForwards: preferForwards ?? this.preferForwards,
preferWithReaction: preferWithReaction ?? this.preferWithReaction,
offset: offset ?? this.offset,
limit: limit ?? this.limit,
);