EasyVmWareConfig constructor

EasyVmWareConfig({
  1. EasyLogHandler? logger,
  2. EasyLogLevel? logLevel,
  3. String? logTag,
  4. String? logFilePath,
  5. int? logFileBackup,
  6. int? logFileMaxBytes,
  7. bool debugRoute = false,
  8. String mainMethod = 'main',
  9. List? mainListArgs,
  10. Map<Symbol, dynamic>? mainNameArgs,
  11. Map<String, String> sourceCodes = const {},
})

Implementation

EasyVmWareConfig({
  super.logger,
  super.logLevel,
  super.logTag,
  super.logFilePath,
  super.logFileBackup,
  super.logFileMaxBytes,
  this.debugRoute = false,
  this.mainMethod = 'main',
  this.mainListArgs,
  this.mainNameArgs,
  this.sourceCodes = const {},
});