copyWith method

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

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,
    );