ExpansionIcon constructor

const ExpansionIcon({
  1. Key? key,
  2. IconData? icon,
  3. Color? color,
  4. double? size,
  5. Duration duration = defaultDuration,
  6. Curve curve = defaultCurve,
})

Implementation

const ExpansionIcon({
  Key? key,
  this.icon,
  this.color,
  this.size,
  this.duration = defaultDuration,
  this.curve = defaultCurve,
}) : super(key: key);