ExpandArrowWidget constructor

const ExpandArrowWidget({
  1. Key? key,
  2. String? collapsedHint,
  3. String? expandedHint,
  4. required Animation<double> animation,
  5. EdgeInsets? padding,
  6. void onTap()?,
  7. Color? arrowColor,
  8. double? arrowSize,
  9. IconData? icon,
  10. TextStyle? hintTextStyle,
  11. ExpandArrowStyle? expandArrowStyle,
  12. bool capitalArrowtext = true,
})

Implementation

const ExpandArrowWidget({
  Key? key,
  this.collapsedHint,
  this.expandedHint,
  required this.animation,
  this.padding,
  this.onTap,
  this.arrowColor,
  this.arrowSize,
  this.icon,
  this.hintTextStyle,
  this.expandArrowStyle,
  this.capitalArrowtext = true,
})  : assert(animation != null),
      super(key: key);