copyWith method

CreateVideoChat copyWith({
  1. int? chatId,
  2. String? title,
  3. int? startDate,
})

Implementation

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