IntConverter constructor Null safety
Create a new IntConverter.
Implementation
const IntConverter({
int? min,
int? max,
}) : super(
convertInt,
type: CommandOptionType.integer,
min: min,
max: max,
);
Create a new IntConverter.
const IntConverter({
int? min,
int? max,
}) : super(
convertInt,
type: CommandOptionType.integer,
min: min,
max: max,
);