copyWith method
Implementation
CreateTextCompositionStyle copyWith({
String? title,
int? customEmojiId,
String? prompt,
bool? showCreator,
}) => CreateTextCompositionStyle(
title: title ?? this.title,
customEmojiId: customEmojiId ?? this.customEmojiId,
prompt: prompt ?? this.prompt,
showCreator: showCreator ?? this.showCreator,
);