cAbsorb method

Widget cAbsorb(
  1. bool absorb
)

Disable clicks on the widget.

absorb specifies whether the widget should absorb pointer events, effectively disabling clicks.

Implementation

Widget cAbsorb(bool absorb) => AbsorbPointer(
      absorbing: absorb,
      child: this,
    );