copyWith method
MessageChatSetBackground
copyWith({
- int? oldBackgroundMessageId,
- ChatBackground? background,
override
Implementation
@override
MessageChatSetBackground copyWith({
int? oldBackgroundMessageId,
ChatBackground? background,
}) =>
MessageChatSetBackground(
oldBackgroundMessageId:
oldBackgroundMessageId ?? this.oldBackgroundMessageId,
background: background ?? this.background,
);