BetterEffectTestApp constructor

const BetterEffectTestApp({
  1. required Runtime runtime,
  2. required Widget child,
  3. EffectCommandObserver? commandObserver,
  4. EffectCommandPolicyObserver? policyObserver,
  5. TextDirection textDirection = TextDirection.ltr,
  6. Key? key,
})

Implementation

const BetterEffectTestApp({
  required this.runtime,
  required this.child,
  this.commandObserver,
  this.policyObserver,
  this.textDirection = TextDirection.ltr,
  super.key,
});