HeroBar.stacked constructor

HeroBar.stacked({
  1. Key? key,
  2. required List<HeroBarWidget> children,
  3. bool? skipConstraints,
  4. HeroHintsBuilder? transition,
})

Implementation

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