Config constructor

Config({
  1. bool? error,
  2. String? message,
  3. InnerConfig? config,
})

Implementation

Config({
  this.error,
  this.message,
  this.config,
});