Skip to content

Commit 25099ac

Browse files
committed
Format
1 parent 964bc88 commit 25099ac

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

lib/ui/native_dialog.dart

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,11 @@ void showNativeDialog(
6060
/// A dialog action which is used to show the actions of a native dialog.
6161
class DialogAction {
6262
/// Creates a [DialogAction].
63-
const DialogAction({required this.text, required this.onTap, this.isDestructiveAction = false});
63+
const DialogAction({
64+
required this.text,
65+
required this.onTap,
66+
this.isDestructiveAction = false,
67+
});
6468

6569
/// The text of the action.
6670
final String text;

0 commit comments

Comments
 (0)