indexOfItem method
Gets the index associated with the data
Implementation
int indexOfItem(dynamic item) {
var controller = controllerOfItem(item);
return (controller != null) ? controller.index : min;
}
Gets the index associated with the data
int indexOfItem(dynamic item) {
var controller = controllerOfItem(item);
return (controller != null) ? controller.index : min;
}