package com.discord.databinding; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.widget.ImageView; import android.widget.TextView; import androidx.annotation.NonNull; import androidx.annotation.Nullable; import androidx.constraintlayout.widget.ConstraintLayout; import androidx.viewbinding.ViewBinding; public final class WidgetChatInputCommandApplicationHeaderItemBinding implements ViewBinding { @NonNull public final ConstraintLayout a; @NonNull public final ImageView b; @NonNull /* renamed from: c reason: collision with root package name */ public final TextView f1728c; public WidgetChatInputCommandApplicationHeaderItemBinding(@NonNull ConstraintLayout constraintLayout, @NonNull ImageView imageView, @NonNull TextView textView) { this.a = constraintLayout; this.b = imageView; this.f1728c = textView; } @NonNull public static WidgetChatInputCommandApplicationHeaderItemBinding a(@NonNull LayoutInflater layoutInflater, @Nullable ViewGroup viewGroup, boolean z2) { View inflate = layoutInflater.inflate(2131558922, viewGroup, false); if (z2) { viewGroup.addView(inflate); } int i = 2131362470; ImageView imageView = (ImageView) inflate.findViewById(2131362470); if (imageView != null) { i = 2131362473; TextView textView = (TextView) inflate.findViewById(2131362473); if (textView != null) { return new WidgetChatInputCommandApplicationHeaderItemBinding((ConstraintLayout) inflate, imageView, textView); } } throw new NullPointerException("Missing required view with ID: ".concat(inflate.getResources().getResourceName(i))); } @Override // androidx.viewbinding.ViewBinding @NonNull public View getRoot() { return this.a; } }