HandLandmarkFrame constructor

HandLandmarkFrame({
  1. required List<Vector3> landmarks,
  2. required ControllerHand hand,
  3. double confidence = 1.0,
  4. DateTime? timestamp,
})

Implementation

HandLandmarkFrame({
  required this.landmarks,
  required this.hand,
  this.confidence = 1.0,
  DateTime? timestamp,
}) : timestamp = timestamp ?? DateTime.now();