buildUseCase method
Wraps use cases with a custom widget depending on the addon setting
that is obtained from valueFromQueryGroup.
Implementation
@override
Widget buildUseCase(
BuildContext context,
Widget child,
bool setting,
) {
if (!setting) return child;
return Inspector(
isEnabled: true, // To bypass disabling on release builds
child: child,
);
}