StreamSettings constructor Null safety

StreamSettings(
  1. {String? server,
  2. String? key,
  3. bool? useAuth,
  4. String? username,
  5. String? password}
)

Implementation

StreamSettings({
  this.server,
  this.key,
  this.useAuth,
  this.username,
  this.password,
  // required this.save
});