copyWith method

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

Implementation

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