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