getCustomDialog property

(Widget? Function(BuildContext context, {String? message, void onUserIgnored()?, void onUserLater()?, void onUserUpdated()?, String? releaseNotes, String? title})?) getCustomDialog
getter/setter pair

The function which returns the custom widget to be shown in place of default alert dialogs

Implementation

Widget? Function(BuildContext context,
    {String? title,
    String? message,
    String? releaseNotes,
    void Function()? onUserIgnored,
    void Function()? onUserLater,
    void Function()? onUserUpdated})? getCustomDialog;