copyWith method

  1. @override
MessageVideoChatScheduled copyWith({
  1. int? groupCallId,
  2. int? startDate,
})
override

Implementation

@override
MessageVideoChatScheduled copyWith({
  int? groupCallId,
  int? startDate,
}) =>
    MessageVideoChatScheduled(
      groupCallId: groupCallId ?? this.groupCallId,
      startDate: startDate ?? this.startDate,
    );