NotificationInput.selection constructor

const NotificationInput.selection({
  1. required String id,
  2. required List<NotificationSelection> selections,
  3. String? title,
  4. String? defaultSelectionId,
})

Implementation

const NotificationInput.selection({
  required this.id,
  required this.selections,
  this.title,
  this.defaultSelectionId,
})  : type = 'selection',
      placeholder = null;