NsgTableMenuButton constructor

const NsgTableMenuButton({
  1. Key? key,
  2. required String tooltip,
  3. required IconData icon,
  4. EdgeInsets margin = const EdgeInsets.only(right: 5, top: 5, bottom: 5),
  5. required VoidCallback onPressed,
  6. Color? color,
  7. 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);