ExpandableImageView.animatedDef constructor
ExpandableImageView.animatedDef({})
Animation Default (Size)
Implementation
factory ExpandableImageView.animatedDef({
required String src,
required Widget child,
AxisExpand axis = AxisExpand.vertical,
Color? titleBGColor,
TextStyle? titleTextStyle,
bool posHorizontal = false,
}) {
return ExpandableImageView._(
src: src,
axis: axis,
animationType: ExpandableAnimation.def,
titleBGColor: titleBGColor,
titleTextStyle: titleTextStyle,
posHorizontal: posHorizontal,
child: child,
);
}