/// A Dart version of Android's [MotionEvent.PointerProperties](https://developer.android.com/reference/android/view/MotionEvent.PointerProperties).
/// A Dart version of Android's [MotionEvent.PointerProperties](https://developer.android.com/reference/android/view/MotionEvent.PointerProperties).
classAndroidPointerProperties{
classAndroidPointerProperties{
/// Value for `toolType` when the tool type is unknown.
staticconstintkToolTypeUnknown=0;
/// Value for `toolType` when the tool type is a finger.
staticconstintkToolTypeFinger=1;
/// Value for `toolType` when the tool type is a stylus.
staticconstintkToolTypeStylus=2;
/// Value for `toolType` when the tool type is a mouse.
staticconstintkToolTypeMouse=3;
/// Value for `toolType` when the tool type is an eraser.
staticconstintkToolTypeEraser=4;
/// Creates an AndroidPointerProperties.
/// Creates an AndroidPointerProperties.
///
///
/// All parameters must not be null.
/// All parameters must not be null.
...
@@ -128,6 +113,21 @@ class AndroidPointerProperties {
...
@@ -128,6 +113,21 @@ class AndroidPointerProperties {
/// See Android's [MotionEvent.PointerProperties#toolType](https://developer.android.com/reference/android/view/MotionEvent.PointerProperties.html#toolType).
/// See Android's [MotionEvent.PointerProperties#toolType](https://developer.android.com/reference/android/view/MotionEvent.PointerProperties.html#toolType).
finalinttoolType;
finalinttoolType;
/// Value for `toolType` when the tool type is unknown.
staticconstintkToolTypeUnknown=0;
/// Value for `toolType` when the tool type is a finger.
staticconstintkToolTypeFinger=1;
/// Value for `toolType` when the tool type is a stylus.
staticconstintkToolTypeStylus=2;
/// Value for `toolType` when the tool type is a mouse.
staticconstintkToolTypeMouse=3;
/// Value for `toolType` when the tool type is an eraser.