ConfigToolInput constructor

ConfigToolInput({
  1. required String action,
  2. String? key,
  3. dynamic value,
  4. String scope = 'user',
})

Implementation

ConfigToolInput({
  required this.action,
  this.key,
  this.value,
  this.scope = 'user',
});