OptimusSlidable constructor

const OptimusSlidable({
  1. Key? key,
  2. required Widget child,
  3. List<Widget> actions = const <Widget>[],
  4. bool isEnabled = true,
  5. bool hasBorders = true,
  6. double actionsWidth = 0,
})

Implementation

const OptimusSlidable({
  super.key,
  required this.child,
  this.actions = const <Widget>[],
  this.isEnabled = true,
  this.hasBorders = true,
  this.actionsWidth = 0,
});