buildUseCase method

  1. @override
Widget buildUseCase(
  1. BuildContext context,
  2. Widget child,
  3. bool setting
)
override

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,
  );
}