angleOffsetNotifier property

ValueNotifier<double> angleOffsetNotifier
getter/setter pair

angle offset value notifier, initialized with 0 rotation when user pan on the wheel, rotate the wheel with angle ValueNotifier is used to reduce the amount of repaint

Implementation

ValueNotifier<double> angleOffsetNotifier = ValueNotifier(0);