off method

  1. @Deprecated('Use unsubscribe() instead')
TTLink off([
  1. TTOnCb? cb
])

Unsubscribe one or all listeners subscribed with on

@returns same link context

Implementation

@Deprecated('Use unsubscribe() instead')
TTLink off([TTOnCb? cb]) {
  unsubscribe(cb);
  return this;
}