removeItemAt method

void removeItemAt(
  1. int position
)

Implementation

void removeItemAt(int position){
  if(_removeItemAtCallback != null) _removeItemAtCallback!(position);
}