ApillonConfig constructor

ApillonConfig({
  1. String? key,
  2. String? secret,
  3. String? apiUrl,
  4. LogLevel? logLevel = LogLevel.ERROR,
  5. bool? debug = false,
})

Implementation

ApillonConfig({
  this.key,
  this.secret,
  this.apiUrl,
  this.logLevel = LogLevel.ERROR,
  this.debug = false,
});