GKManagedWidget constructor

const GKManagedWidget({
  1. Key? key,
  2. required GKEffect effect,
  3. GKTrigger trigger = GKTrigger.auto,
  4. bool interactive = false,
  5. Widget? child,
  6. GKController? controller,
  7. Duration duration = const Duration(seconds: 2),
})

Creates a GKManagedWidget.

Accepts the same parameters as GKWidget.

Implementation

const GKManagedWidget({
  super.key,
  required this.effect,
  this.trigger = GKTrigger.auto,
  this.interactive = false,
  this.child,
  this.controller,
  this.duration = const Duration(seconds: 2),
});