copyWith method

SetSavedMessagesTagLabel copyWith({
  1. ReactionType? tag,
  2. String? label,
})

Implementation

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