copyWith method
Implementation
SavedMessagesTag copyWith({ReactionType? tag, String? label, int? count}) =>
SavedMessagesTag(
tag: tag ?? this.tag,
label: label ?? this.label,
count: count ?? this.count,
);
SavedMessagesTag copyWith({ReactionType? tag, String? label, int? count}) =>
SavedMessagesTag(
tag: tag ?? this.tag,
label: label ?? this.label,
count: count ?? this.count,
);