AFConfigEntryDescription constructor

AFConfigEntryDescription({
  1. required String help,
  2. required String textValue,
  3. required dynamic runtimeValue,
  4. String? title,
})

Implementation

AFConfigEntryDescription({
  required this.help,
  required this.textValue,
  required this.runtimeValue,
  this.title,
});