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,
double setting,
) {
return MediaQuery(
data: MediaQuery.of(context).copyWith(
textScaler: TextScaler.linear(setting),
),
child: child,
);
}