Alert constructor
Alert({})
Implementation
Alert({
required this.title,
required this.buttons,
required String analyticsScreenName,
this.description,
this.barrierDismissible = true,
super.skipKeyboardDismissal,
super.navigationKey,
}) : super(
analyticsIdentifiable: AnalyticsIdentifiable(
screenName: analyticsScreenName,
// Not used; [buildAnimatedPage] builds the dialog directly.
builder: (_) => const SizedBox.shrink(),
),
);