HeroBar.stacked constructor
      
      HeroBar.stacked({ 
    
    
- Key? key,
- required List<HeroBarWidget> children,
- bool? skipConstraints,
- HeroHintsBuilder? transition,
Implementation
HeroBar.stacked({
  Key? key,
  required List<HeroBarWidget> children,
  bool? skipConstraints,
  HeroHintsBuilder? transition,
}) : this._(
          children: children,
          skipConstraints: skipConstraints,
          transition: transition,
          key: key);