ExpandableIcon constructor

const ExpandableIcon({
  1. Key? key,
  2. required Function onClicked,
  3. required double width,
  4. required double height,
  5. required Color iconColor,
})

Implementation

const ExpandableIcon({
  Key? key,
  required this.onClicked,
  required this.width,
  required this.height,
  required this.iconColor,
}) : super(key: key);