HttpDetails constructor

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

Implementation

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