ShowSnackBarAction constructor

ShowSnackBarAction({
  1. String? title,
  2. bool allowClosing = false,
  3. int showForSeconds = 3,
  4. SnackBarBehavior behavior = SnackBarBehavior.fixed,
})

Implementation

ShowSnackBarAction({
  super.title,
  this.allowClosing = false,
  this.showForSeconds = 3,
  this.behavior = SnackBarBehavior.fixed,
}) : super(schemaType: schemaName);