AndroidNotificationActionInput constructor

const AndroidNotificationActionInput({
  1. List<String> choices = const <String>[],
  2. bool allowFreeFormInput = true,
  3. String? label,
  4. Set<String> allowedMimeTypes = const <String>{},
})

Constructs a AndroidNotificationActionInput. The platform will create this object using RemoteInput.Builder. See the official docs https://developer.android.com/reference/kotlin/androidx/core/app/RemoteInput.Builder?hl=en for details.

Implementation

const AndroidNotificationActionInput({
  this.choices = const <String>[],
  this.allowFreeFormInput = true,
  this.label,
  this.allowedMimeTypes = const <String>{},
});