ComponentTree constructor

const ComponentTree({
  1. Key? key,
  2. String? id,
  3. Duration animationDuration = const Duration(milliseconds: 80),
})

Implementation

const ComponentTree({
  super.key,
  this.id,
  this.animationDuration = const Duration(milliseconds: 80),
});