showLongPressDialogButton function
void
showLongPressDialogButton(
- BuildContext context, {
- required List<
LongPressDialogButton> buttons,
Implementation
void showLongPressDialogButton(
BuildContext context, {
required List<LongPressDialogButton> buttons,
}) {
showDialog(
context: context,
builder: (context) => _LongPressDialog(buttons),
);
}