isSelectableIn<T> static method
Returns whether model
has item
as a SelectableOption.Selectable.
Implementation
static bool isSelectableIn<T>(
Object? model,
T item, [
bool defaultIfMissingInterface = true,
]) {
return _isOptionCheck(
model,
item,
SelectableOption.Selectable,
defaultIfMissingInterface,
);
}