copyWith method

SavedMessagesTag copyWith({
  1. ReactionType? tag,
  2. String? label,
  3. int? count,
})

Implementation

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