sendHello method

Object sendHello()

Implementation

Object sendHello() {
  final hello = Hello(
    _realm,
    clientRoles,
    _authenticator.authID,
    [_authenticator.authMethod],
    authExtra: _authenticator.authExtra,
  );

  _state = stateHelloSent;
  return _serializer.serialize(hello);
}