ActionModalBottomSheet constructor

const ActionModalBottomSheet({
  1. required TypeAction typeAction,
  2. WrapAlignment align = WrapAlignment.end,
  3. double spacing = 20.0,
  4. List<Widget> children = const <Widget>[],
  5. TextDirection textDirection = TextDirection.ltr,
  6. VoidCallback? onDelete,
  7. VoidCallback? onEdit,
})

Implementation

const ActionModalBottomSheet({
  required this.typeAction,
  this.align = WrapAlignment.end,
  this.spacing = 20.0,
  this.children = const <Widget>[],
  this.textDirection = TextDirection.ltr,
  this.onDelete,
  this.onEdit,
});