AuthenticationSessionSettings constructor

AuthenticationSessionSettings(
  1. {@required String userId}
)

@param userId ID of the user to authenticate

Implementation

AuthenticationSessionSettings({@required String userId}) : super() {
  this.userId = userId;
}