BaseActionSheet constructor

const BaseActionSheet({
  1. Key? key,
  2. Widget? title,
  3. Widget? message,
  4. List<Widget> actions = const <Widget>[],
  5. required Widget cancelButton,
})

Implementation

const BaseActionSheet({
  Key? key,
  this.title,
  this.message,
  this.actions = const <Widget>[],
  required this.cancelButton,
}) : super(key: key);