ExpandableImageView.animatedDef constructor

ExpandableImageView.animatedDef({
  1. required String src,
  2. required Widget child,
  3. AxisExpand axis = AxisExpand.vertical,
  4. Color? titleBGColor,
  5. TextStyle? titleTextStyle,
  6. bool posHorizontal = false,
})

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,
  );
}