build method
Describes the part of the user interface represented by this widget.
Implementation
@override
Widget build(BuildContext context) {
return AbsorbPointer(
child: EffectWidget(
effect: DimmerEffect(scalar: scalar),
globalComposite: true,
child: const SizedBox.expand(),
),
);
}