ConfigToolOutput constructor

const ConfigToolOutput({
  1. required bool success,
  2. String? operation,
  3. String? setting,
  4. dynamic value,
  5. dynamic previousValue,
  6. dynamic newValue,
  7. String? error,
})

Implementation

const ConfigToolOutput({
  required this.success,
  this.operation,
  this.setting,
  this.value,
  this.previousValue,
  this.newValue,
  this.error,
});