NotificationInput.text constructor

const NotificationInput.text({
  1. required String id,
  2. String? title,
  3. String? placeholder,
})

Implementation

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