LogbotCredentials constructor

LogbotCredentials({
  1. required String clientId,
  2. required String clientSecret,
  3. required String username,
  4. required String password,
  5. String? basePath,
})

Implementation

LogbotCredentials({
  required this.clientId,
  required this.clientSecret,
  required this.username,
  required this.password,
  this.basePath,
});