copyWith method
SendBusinessMessageAlbum
copyWith({
- String? businessConnectionId,
- int? chatId,
- InputMessageReplyTo? replyTo,
- bool? disableNotification,
- bool? protectContent,
- int? effectId,
- List<
InputMessageContent> ? inputMessageContents,
Implementation
SendBusinessMessageAlbum copyWith({
String? businessConnectionId,
int? chatId,
InputMessageReplyTo? replyTo,
bool? disableNotification,
bool? protectContent,
int? effectId,
List<InputMessageContent>? inputMessageContents,
}) => SendBusinessMessageAlbum(
businessConnectionId: businessConnectionId ?? this.businessConnectionId,
chatId: chatId ?? this.chatId,
replyTo: replyTo ?? this.replyTo,
disableNotification: disableNotification ?? this.disableNotification,
protectContent: protectContent ?? this.protectContent,
effectId: effectId ?? this.effectId,
inputMessageContents: inputMessageContents ?? this.inputMessageContents,
);