NsgTableMenuButton constructor
const
NsgTableMenuButton({
- Key? key,
- required String tooltip,
- required IconData icon,
- EdgeInsets margin = const EdgeInsets.only(right: 5, top: 5, bottom: 5),
- required VoidCallback onPressed,
- Color? color,
- Color? backColor,
Implementation
const NsgTableMenuButton(
{Key? key,
required this.tooltip,
required this.icon,
this.margin = const EdgeInsets.only(right: 5, top: 5, bottom: 5),
required this.onPressed,
this.color,
this.backColor})
: super(key: key);