ConfigError constructor

ConfigError({
  1. required String message,
  2. String? configPath,
  3. String errorId = 'config_error',
  4. String? suggestion,
})

Implementation

ConfigError({
  required this.message,
  this.configPath,
  this.errorId = 'config_error',
  this.suggestion,
});