state property
The resulting snap state when snapping to or from a snap candidate.
Implementation
SnapState get state {
final coreValue = _withThrowingErrorHandler((errorHandler) {
return runtimecore.RT_SnapChangedInfo_getState(
_handle,
errorHandler,
);
});
return SnapState._fromCoreValue(
coreValue,
);
}