blob: 6aaba997faad63067fc90370158f354f9fdaecdc [file] [log] [blame]
package com.android.systemui.qs.tiles.dialog;
import android.content.Context;
import android.util.FeatureFlagUtils;
public class InternetDialogUtil {
public static boolean isProviderModelEnabled(Context context) {
if (context == null) {
return false;
}
return FeatureFlagUtils.isEnabled(context, FeatureFlagUtils.SETTINGS_PROVIDER_MODEL);
}
}