PressableState.none constructor
Implementation
factory PressableState.none({Key? key, required Widget child}) {
return PressableState(
key: key,
enabled: false,
hovered: false,
focused: false,
pressed: false,
longPressed: false,
pointerPosition: null,
child: child,
);
}