ActionItem constructor

const ActionItem({
  1. required Widget icon,
  2. String? text,
  3. TextStyle textStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.normal, color: Colors.black),
  4. TextOverflow textOverflow = TextOverflow.ellipsis,
  5. double spacing = 4.0,
  6. VoidCallback? onPressed,
  7. EdgeInsets padding = EdgeInsets.zero,
})

Implementation

const ActionItem({
  required this.icon,
  this.text,
  this.textStyle = const TextStyle(
    fontSize: 16,
    fontWeight: FontWeight.normal,
    color: Colors.black,
  ),
  this.textOverflow = TextOverflow.ellipsis,
  this.spacing = 4.0,
  this.onPressed,
  this.padding = EdgeInsets.zero,
});