ActionItem constructor
const
ActionItem({
- required Widget icon,
- String? text,
- TextStyle textStyle = const TextStyle(fontSize: 16, fontWeight: FontWeight.normal, color: Colors.black),
- TextOverflow textOverflow = TextOverflow.ellipsis,
- double spacing = 4.0,
- VoidCallback? onPressed,
- 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,
});