CancelAction constructor

CancelAction({
  1. required Widget title,
  2. void onPressed(
    1. BuildContext context
    )?,
  3. TextStyle? textStyle,
})

Implementation

CancelAction({
  required this.title,
  this.onPressed,
  this.textStyle,
});