withBehavioralTracking method

Widget withBehavioralTracking({
  1. Key? key,
  2. bool startTracking = true,
  3. bool continuousTracking = false,
})

Implementation

Widget withBehavioralTracking({
  Key? key,
  bool startTracking = true,
  bool continuousTracking = false,
}) {
  return KalapaBehaviorWidget(
    key: key,
    startTracking: startTracking,
    continuousTracking: continuousTracking,
    child: this,
  );
}