copyWith method

PushMessageContentInviteVideoChatParticipants copyWith({
  1. bool? isCurrentUser,
})

Implementation

PushMessageContentInviteVideoChatParticipants copyWith({
  bool? isCurrentUser,
}) => PushMessageContentInviteVideoChatParticipants(
  isCurrentUser: isCurrentUser ?? this.isCurrentUser,
);