package com.discord.databinding; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.FrameLayout; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.viewbinding.ViewBinding; public final class WidgetChannelMembersListItemPlaceholderHeaderBinding implements ViewBinding { @NonNull public final FrameLayout a; public WidgetChannelMembersListItemPlaceholderHeaderBinding(@NonNull FrameLayout frameLayout, @NonNull View view) { this.a = frameLayout; } @NonNull public static WidgetChannelMembersListItemPlaceholderHeaderBinding a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) { View inflate = layoutInflater.inflate(2131558877, viewGroup, false); if (z2) { viewGroup.addView(inflate); } View findViewById = inflate.findViewById(2131362289); if (findViewById != null) { return new WidgetChannelMembersListItemPlaceholderHeaderBinding((FrameLayout) inflate, findViewById); } throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(2131362289))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }