InteractionInteractiveContext class abstract interface

A context that can be interacted with and originated from an interaction.

You might also be interested in:

Implemented types
Implementers

Constructors

InteractionInteractiveContext()

Properties

delegate InteractiveContext?
The delegate of this context.
no setterinherited
hashCode int
The hash code for this object.
no setterinherited
latestContext InteractiveContext
The youngest context that handles all interactions.
no setterinherited
parent InteractiveContext?
The parent of this context.
no setterinherited
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

acknowledge({ResponseLevel? level}) Future<void>
Acknowledge the underlying interaction without yet sending a response.
awaitButtonPress(ComponentId componentId) Future<ButtonComponentContext>
Wait for a user to press a button and return a context representing that button press.
inherited
awaitModal(String customId, {Duration? timeout}) Future<ModalContext>
Wait for a user to submit a modal and return a context representing that submission.
awaitMultiSelection<T>(ComponentId componentId, {Converter<T>? converterOverride}) Future<SelectMenuContext<List<T>>>
Wait for a user to select options from a multi-select menu and return a context representing that selection.
inherited
awaitSelection<T>(ComponentId componentId, {Converter<T>? converterOverride}) Future<SelectMenuContext<T>>
Wait for a user to select a single option from a multi-select menu and return a context representing that selection.
inherited
getButtonPress(Message message) Future<ButtonComponentContext>
Wait for a user to press on any button on a given message and return a context representing the button press.
inherited
getButtonSelection<T>(List<T> values, MessageBuilder builder, {Map<T, ButtonStyle>? styles, bool authorOnly = true, ResponseLevel? level, Duration? timeout, FutureOr<ButtonBuilder> toButton(T)?, Converter<T>? converterOverride}) Future<T>
Get a selection from a user, presenting the options as an array of buttons.
inherited
getConfirmation(MessageBuilder builder, {Map<bool, String> values = const {true : 'Yes', false : 'No'}, Map<bool, ButtonStyle> styles = const {true : ButtonStyle.success, false : ButtonStyle.danger}, bool authorOnly = true, ResponseLevel? level, Duration? timeout}) Future<bool>
Present the user with two options and return whether the positive one was clicked.
inherited
getModal({required String title, required List<TextInputBuilder> components, Duration? timeout}) Future<ModalContext>
Present the user with a modal, wait for them to submit it, and return a context representing that submission.
getMultiSelection<T>(List<T> choices, MessageBuilder builder, {ResponseLevel? level, Duration? timeout, bool authorOnly = true, FutureOr<SelectMenuOptionBuilder> toSelectMenuOption(T)?, Converter<T>? converterOverride}) Future<List<T>>
Present the user with a drop-down menu of choices and return the selected choices.
inherited
getSelection<T>(List<T> choices, MessageBuilder builder, {ResponseLevel? level, Duration? timeout, bool authorOnly = true, FutureOr<SelectMenuOptionBuilder> toSelectMenuOption(T)?, Converter<T>? converterOverride}) Future<T>
Present the user with a drop-down menu of choices and return the selected choice.
inherited
noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
respond(MessageBuilder builder, {ResponseLevel? level}) Future<Message>
Send a response to the command.
inherited
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited