copyWith method
Implementation
CreateVideoChat copyWith({
int? chatId,
String? title,
int? startDate,
bool? isRtmpStream,
}) =>
CreateVideoChat(
chatId: chatId ?? this.chatId,
title: title ?? this.title,
startDate: startDate ?? this.startDate,
isRtmpStream: isRtmpStream ?? this.isRtmpStream,
);