CPActionSheetTemplate constructor

CPActionSheetTemplate({
  1. String? title,
  2. String? message,
  3. required List<CPAlertAction> actions,
})

Creates CPActionSheetTemplate with a title, a message and a list of actions available on the action sheet.

Implementation

CPActionSheetTemplate({
  this.title,
  this.message,
  required this.actions,
});