IndividualConfigAndroid constructor

IndividualConfigAndroid({
  1. required String configName,
  2. required bool isEnabled,
  3. List<String>? exceptionList,
})

Implementation

IndividualConfigAndroid({
  required this.configName,
  required this.isEnabled,
  this.exceptionList
});