ConnectionOptions constructor

const ConnectionOptions({
  1. Duration? connectionTimeout,
  2. Duration? loginTimeout,
  3. Duration? queryTimeout,
  4. int? maxResultBufferBytes,
  5. int? initialResultBufferBytes,
  6. bool autoReconnectOnConnectionLost = false,
  7. int? maxReconnectAttempts,
  8. Duration? reconnectBackoff,
})

Implementation

const ConnectionOptions({
  this.connectionTimeout,
  this.loginTimeout,
  this.queryTimeout,
  this.maxResultBufferBytes,
  this.initialResultBufferBytes,
  this.autoReconnectOnConnectionLost = false,
  this.maxReconnectAttempts,
  this.reconnectBackoff,
});