addListen method

bool addListen(
  1. GoogleListener? f
)

Add a Google listener

Implementation

bool addListen(GoogleListener? f) {
  var add = f != null;
  if (add) {
    add = _googleListeners!.add(f);
  }
  return add;
}