KalapaBehaviorWidget constructor

const KalapaBehaviorWidget({
  1. Key? key,
  2. required Widget child,
  3. bool startTracking = true,
  4. bool continuousTracking = false,
})

Implementation

const KalapaBehaviorWidget({
  Key? key,
  required this.child,
  this.startTracking = true,
  this.continuousTracking = false,
}) : super(key: key);