ShowAlertAction constructor

ShowAlertAction({
  1. String? title,
  2. String message = '',
  3. List<UserAction> actions = const [],
  4. bool barrierDismissible = true,
})

Implementation

ShowAlertAction({
  super.title,
  this.message = '',
  this.actions = const [],
  this.barrierDismissible = true,
}) : super(schemaType: schemaName);