HeroBar constructor
HeroBar({})
Implementation
HeroBar(
{Key? key,
required Widget child,
HeroHintsBuilder? transition,
bool? skipConstraints,
required double height,
double? expandedHeight})
: this._(
key: key,
transition: transition,
skipConstraints: skipConstraints,
children: [
HeroBarWidget.expanding(
child: child,
collapsedHeight: height,
expandedHeight: expandedHeight ?? height,
)
]);