CommandOption.mentionable constructor
Implementation
factory CommandOption.mentionable(Display label, Display description, { bool? required = false }) {
return CommandOption(
label: label,
description: description,
type: OptionType.mentionable,
required: required
);
}