NumConverter<T extends num> class
Null safety
A converter that converts input to various types of numbers, possibly with a minimum or maximum value.
Note: this converter does not ensure that all values will be in the range min..max
. min and
max offer purely client-side validation and input from text commands is not validated beyond
being a valid number.
You might also be interested in:
- IntConverter, for converting ints;
- DoubleConverter, for converting doubles.
- Inheritance
- Implementers
Constructors
- NumConverter(T? convert(StringView, IChatContext), {required CommandOptionType type, T? min, T? max})
-
Create a new NumConverter.
const
Properties
-
autocompleteCallback
→ (FutureOr<
Iterable< Function(AutocompleteContext)?)ArgChoiceBuilder> ?> -
A function called to provide autocompletion
for arguments of this type.
finalinherited
-
choices
→ Iterable<
ArgChoiceBuilder> ? -
The choices for this type.
finalinherited
-
convert
→ FutureOr<
T?> Function(StringView view, IChatContext context) -
The function called to perform the conversion.
finalinherited
- hashCode → int
-
The hash code for this object.
read-onlyinherited
- max → T?
-
The biggest value the user will be allows to input in the Discord Client.
final
- min → T?
-
The smallest value the user will be allowed to input in the Discord Client.
final
- output → Type
-
The type that this converter parses.
finalinherited
- processOptionCallback → (void Function(CommandOptionBuilder)?)
-
A callback called with the CommandOptionBuilder created for an option using this converter.
read-onlyoverride
- runtimeType → Type
-
A representation of the runtime type of the object.
read-onlyinherited
- type → CommandOptionType
-
The Discord Slash Command Argument Type
of the type that this converter parses.
finalinherited
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a non-existent method or property is accessed.
inherited
-
toString(
) → String -
A string representation of this object.
inherited
Operators
-
operator ==(
Object other) → bool -
The equality operator.
inherited