Options constructor Null safety

Options(
  1. {int connectionTimeout = 10,
  2. int authenticationTimeout = 30,
  3. int fileTransferTimeout = 30,
  4. int typingIndicatorThrottle = 5,
  5. bool useMemeberAsMessageSender = true,
  6. int websocketTimeout = 30,
  7. bool includePollDetails = true}
)

Implementation

Options({
  this.connectionTimeout = 10,
  this.authenticationTimeout = 30,
  this.fileTransferTimeout = 30,
  this.typingIndicatorThrottle = 5,
  this.useMemeberAsMessageSender = true,
  this.websocketTimeout = 30,
  this.includePollDetails = true,
});