SRP6Session constructor

SRP6Session({
  1. int timeout = 0,
})

Implementation

SRP6Session({int this.timeout = 0}) {
  if (timeout == null || timeout! < 0) {
    throw IllegalArgumentException("The timeout must be zero (no timeout) or greater");
  }
}