PointerSignal.fromSample constructor
- PointerSample sample,
- PointerSignalType type
Implementation
factory PointerSignal.fromSample(
PointerSample sample,
PointerSignalType type,
) {
return PointerSignal(
type: type,
pointerId: sample.pointerId,
position: sample.position,
timestampMs: sample.timestampMs,
kind: sample.kind,
);
}