removeListener method

void removeListener(
  1. int subscribingId
)

Unsubscribe from the keyboard visibility events subscribingId has to contain an id previously returned on add

Implementation

void removeListener(int subscribingId) {
  _list.remove(subscribingId);
}