dialogButton function

Widget dialogButton(
  1. AppModel app,
  2. BuildContext context, {
  3. VoidCallback? onPressed,
  4. required String label,
  5. String? tooltip,
  6. bool? selected,
})

Implementation

Widget dialogButton(AppModel app, BuildContext context,
        {VoidCallback? onPressed,
        required String label,
        String? tooltip,
        bool? selected}) =>
    StyleRegistry.registry()
        .styleWithApp(app)
        .frontEndStyle()
        .buttonStyle()
        .dialogButton(app, context,
            onPressed: onPressed,
            label: label,
            tooltip: tooltip,
            selected: selected);