activate method

Future<void> activate()

Activates the session. You should activate before using it; the AccessoryEventType.activated event signals that activation completed.

Implementation

Future<void> activate() {
  _throwIfDisposed();
  return _guard(() => _api.activate());
}