HttpDetails constructor

HttpDetails({
  1. String? username,
  2. String? password,
  3. String? baseUrl,
  4. Database? database,
})

Implementation

HttpDetails({
  this.username,
  this.password,
  this.baseUrl,
  this.database,
});