ConfigError constructor

const ConfigError({
  1. String? code,
  2. String? message,
  3. String? hint,
})

Implementation

const ConfigError({
  super.code,
  super.message,
  super.hint,
});